暂无搜索历史
import jieba from wordcloud import WordCloud import matplotlib.pyplot as plt # ...
import traceback try: a except: print("in except---------") tracebac...
067_如何处理各种可能的异常_try_except_Error0 播放 · 0 赞同视频
a = input("How many apples do you have:") weight = a * 2 print("You have ",weigh...
提示符是怎么来的_[词根溯源]prompt_input_输入函数_提示符 回忆上次内容
061_python如何接收输入_input函数_字符串_str_容器 输入输出0 播放 · 0 赞同视频
local_soil_moisture_value_to_determine_the_amount_of_water_added = 0
电子排版领域 The underscore is not the same character as the dash character, although...
057如何删除print函数_dunder_builtins_系统内建模块9 播放 · 0 赞同视频
055_python编程_容易出现的问题_函数名的重新赋值_print_int0 播放 · 0 赞同视频
[趣味拓展]为什么学编程都要从hello_world_开始_HelloWorld的由来_程序员的浪漫 回忆上次内容
[系统开发语言为什么默认是c语言 [趣味拓展]c语言发祥史_c是如何成为第一系统语言的
类型和地址 print("type:", type(a)) print("id:", id(a))
[词根溯源]locals_现在都定义了哪些变量_地址_pdb_调试中观察变量 回忆上次内容
变量赋值 s1 = "oeasy" s2 = s1 print(id(s1)) print(id(s2)) print(id(s1) == id(s2))
相同对象 s1 = "oeasy" s2 = "oeasy" print(id(s1)) print(id(s2)) print(id(s1) == id(s2...