Blank-小纸条-第14页
Blank的头像-小纸条
管理员
这家伙很懒,什么都没有写...
XQ5.0.0 - 使用技巧-小纸条

XQ5.0.0 – 使用技巧

不懂可以联系客服 ::(勉强) 界面简介 权限简介 使用插件之前我需要先了解一下插件的权限分配,插件分为了1-9个权限从上到下分别为 1主人,2超级管理员,3授权商(也就是群主),4分群管理员,5全局白...
2年前
035 8
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循环...
2年前
034 8
python - 文件-小纸条

python – 文件

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

python – python – json

直接看示例 import json # 1.列表嵌套字典转json data = [{"a": "1"}, {"b": "2"}, {"c": "3"}] json_str = json.dumps(data, en...
2年前
网站点击散开特效-小纸条

网站点击散开特效

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