编程共53篇 第10页
python - while/for-小纸条

python – while/for

循环控制语句1.break,跳出循环2.continue,跳过本次循环while i = 0 while 1 >= 100: if i >= 10: print("while循环结束") result = False else: i += 1 print(f"while循环...
Blank的头像-小纸条Blank2年前
034 8
python - python - json-小纸条

python – python – json

直接看示例 import json # 1.列表嵌套字典转json data = [{"a": "1"}, {"b": "2"}, {"c": "3"}] json_str = json.dumps(data, en...
Blank的头像-小纸条Blank2年前
python - 文件-小纸条

python – 文件

文件的打开open(name,mode,encoding)name表示打开的文件名mode表示打开的模式,比如只读,写入,追加等,r表示只读,W表示写入,s文件追加,a+表示读写encoding表示文件的编码注意:多次调用未关闭则会...
Blank的头像-小纸条Blank2年前
python  - 函数/方法-小纸条

python – 函数/方法

函数的定义def 函数名(传入变量):return 表示需要返回的内容,可写可不写在pycharm中输入三个'''回车即可快捷添加函数说明示例: # 1.单返回值示例 msg = my_add(100,200) print(f"两数相加...
Blank的头像-小纸条Blank2年前
网站点击散开特效-小纸条

网站点击散开特效

给你的网站添加鼠标点击散开特效 效果 代码 将代码添加在您网站的 html 页面的 body 标签中任意位置即可 <canvas id='fireworks' style='position: fixed; left: 0px; top: 0px; pointer-eve...
Blank的头像-小纸条Blank2年前
032 9