腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
腾讯云架构师技术同盟
文章/答案/技术大牛
搜索
搜索
关闭
发布
首页
学习
活动
专区
工具
TVP
腾讯云架构师技术同盟
返回腾讯云官网
oeasy教您玩转linux、python
oeasy教您玩转linux、python
专栏成员
举报
223
文章
113454
阅读量
24
订阅数
订阅专栏
申请加入专栏
全部文章(223)
python(113)
https(60)
网络安全(57)
github(35)
编程算法(31)
linux(25)
git(23)
ascii(19)
shell(18)
开源(15)
bash(13)
ide(12)
unix(11)
存储(11)
bash 指令(10)
apt-get(10)
vim(10)
网站(6)
python3(6)
游戏(5)
java(4)
c 语言(4)
gui(4)
pdb(4)
汇编语言(3)
ubuntu(3)
cat(3)
matrix(3)
txt(3)
kernel(2)
windows(2)
bit(2)
breakpoints(2)
debug(2)
file(2)
insert(2)
ls(2)
set(2)
try-catch(2)
word(2)
终端(2)
mac os(1)
c++(1)
bootstrap(1)
css(1)
qt(1)
arm(1)
硬件开发(1)
sql(1)
打包(1)
centos(1)
访问管理(1)
http(1)
grep(1)
微服务(1)
es(1)
apt(1)
break(1)
count(1)
cursor(1)
declaration(1)
directory(1)
dot(1)
exception(1)
git-clone(1)
identifier(1)
indentation(1)
integer(1)
local(1)
math(1)
naming-conventions(1)
operating-system(1)
prompt(1)
range(1)
release(1)
shift(1)
steam(1)
string(1)
sudo(1)
system(1)
time(1)
var(1)
version(1)
编码(1)
操作系统(1)
计算机(1)
教程(1)
乱码(1)
苹果(1)
字符编码(1)
字符串(1)
搜索文章
搜索
搜索
关闭
[oeasy]python070_如何导入模块_导入模块的作用_hello_dunder_双下划线
python
import jieba from wordcloud import WordCloud import matplotlib.pyplot as plt # 读取文件 with open('/usr/lib/python3.8/LICENSE.txt') as file: text = file.read() # 使用jieba进行中文分词 words = ' '.join(jieba.cut(text)) # 生成词云 wordcloud = WordCloud(font_path='/usr/share/fonts/truetype/wqy/wqy-microhei.ttc', # 指定中文字体路径 width=800, height=600, background_color='white').generate(words) # 使用matplotlib展示词云 plt.imshow(wordcloud, interpolation='bilinear') plt.axis('off') plt.show()
oeasy
2025-03-01
47
0
[oeasy]python069_当前作用域都有些什么_列表dir_函数_builtins
directory
python
oeasy
2025-02-24
37
0
[oeasy]python068_异常处理之后做些什么_try语句的完全体_最终_finally
python
import traceback try: a except: print("in except---------") traceback.print_exc() print("in except=========")
oeasy
2025-02-21
30
0
[oeasy]python067_如何处理各种可能的异常_try_except_Error
try-catch
python
067_如何处理各种可能的异常_try_except_Error0 播放 · 0 赞同视频
oeasy
2025-02-17
40
0
[oeasy]python065python报错怎么办_try_试着来_except_发现异常
python
exception
try-catch
a = input("How many apples do you have:") weight = a * 2 print("You have ",weight, "kg apples.")
oeasy
2025-02-11
42
0
[oeasy]python062_提示符是怎么来的_[词根溯源]prompt_input_输入函数_提示符
prompt
提示符是怎么来的_[词根溯源]prompt_input_输入函数_提示符 回忆上次内容
oeasy
2025-01-20
43
0
[oeasy]python061_如何接收输入_input函数_字符串_str_容器_ 输入输出
python
061_python如何接收输入_input函数_字符串_str_容器 输入输出0 播放 · 0 赞同视频
oeasy
2025-01-17
50
0
[oeasy]python059变量命名有什么规则_惯用法_蛇形命名法_name_convention_snake
naming-conventions
python
local_soil_moisture_value_to_determine_the_amount_of_water_added = 0
oeasy
2025-01-13
66
0
[oeasy]python057_如何删除print函数_dunder_builtins_系统内建模块
python
057如何删除print函数_dunder_builtins_系统内建模块9 播放 · 0 赞同视频
oeasy
2025-01-06
48
0
[oeasy]python055_python编程_容易出现的问题_函数名的重新赋值_print_int
python
055_python编程_容易出现的问题_函数名的重新赋值_print_int0 播放 · 0 赞同视频
oeasy
2024-12-29
64
0
[oeasy]python054_python有哪些关键字_keyword_list_列表_reserved_words
python
oeasy
2024-12-20
46
0
[oeasy]python053_学编程为什么从hello_world_开始
python
[趣味拓展]为什么学编程都要从hello_world_开始_HelloWorld的由来_程序员的浪漫 回忆上次内容
oeasy
2024-12-18
61
0
[oeasy]python052_[系统开发语言为什么默认是c语言
c 语言
[系统开发语言为什么默认是c语言 [趣味拓展]c语言发祥史_c是如何成为第一系统语言的
oeasy
2024-12-12
40
0
[oeasy]python051_什么样的变量名能用_标识符_identifier
python
identifier
oeasy
2024-12-11
91
0
[oeasy]python050_如何删除变量_del_delete_variable
var
类型和地址 print("type:", type(a)) print("id:", id(a))
oeasy
2024-12-09
57
0
[oeasy]python049_[词根溯源]locals_现在都定义了哪些变量
local
[词根溯源]locals_现在都定义了哪些变量_地址_pdb_调试中观察变量 回忆上次内容
oeasy
2024-12-07
64
0
[oeasy]python048_用变量赋值_连等赋值_解包赋值_unpack_assignment
python
变量赋值 s1 = "oeasy" s2 = s1 print(id(s1)) print(id(s2)) print(id(s1) == id(s2))
oeasy
2024-12-04
50
0
[oeasy]python047_变量在内存内的什么位置_物理地址_id_内存地址
python
相同对象 s1 = "oeasy" s2 = "oeasy" print(id(s1)) print(id(s2)) print(id(s1) == id(s2) )
oeasy
2024-12-02
52
0
046_pdb_debug_调试赋值语句_先声明赋值_再使用
pdb
python
oeasy
2024-11-28
59
0
044[词根溯源]declaration_变量含义_meaning_声明
python
declaration
oeasy
2024-11-24
107
0
点击加载更多
社区活动
Python精品学习库
代码在线跑,知识轻松学
立即查看
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
立即体验
技术创作特训营·精选知识专栏
往期视频·干货材料·成员作品 最新动态
立即查看
领券
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档