摘要: win10激活.bat slmgr.vbs /ipk DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 slmgr.vbs /skms 10.1.8.76:1688slmgr.vbs /ato office2016.bat cd C:\Program Files\Microsoft Off 阅读全文
posted @ 2025-03-31 10:25 水凤火凰 阅读(25) 评论(0) 推荐(0)
摘要: sh install_common_dependence.sh -s appnode -r 5.10.0-136.24.0.100.oe2203sp1.x86_64查看磁盘lsblk -d -o name,rotaparted -lm格式化 列出磁盘详情:lsblk格式化mkfs.xfs -f /d 阅读全文
posted @ 2025-03-28 16:10 水凤火凰 阅读(14) 评论(0) 推荐(0)
摘要: class SeleniumLibrary: def __init__(self, timeout = 0:00:05, implicit_wait = 0:00:00, run_on_failure = 'Capture Page Screenshot', screenshot_root_dire 阅读全文
posted @ 2025-03-14 17:29 水凤火凰 阅读(7) 评论(0) 推荐(0)
摘要: 8 函数 8.1 定义函数 def greet_user(): """打印问候""" print("Hello!") greet_user() 输出结果: Hello! 8.1.1 向函数传递参数 实参 -- 实参是调用函数时传递给函数的信息 形参 -- 函数完成其工作所需的一项信息 def gre 阅读全文
posted @ 2021-11-10 12:47 水凤火凰 阅读(58) 评论(0) 推荐(0)
摘要: 3.1 列表 创建列表 bicycles = ['trek', 'cannondale', 'redline', 'specialized'] print(bicycles) 输出: ['trek', 'cannondale', 'redline', 'specialized'] 3.1.1 访问列 阅读全文
posted @ 2021-11-09 21:41 水凤火凰 阅读(48) 评论(0) 推荐(0)
摘要: 2.1 变量的命名和使用 变量名只能包含字母、数字、下划线。变量名可以字母或下划线打头,如:message_1 ,但不能以数字打头,不能以数字开头; 变量名不能包含空格; 变量名不能包含Python关键字和函数名; 变量名应既简短又具有描述性,可读性,见名知意; 变量名最好不要用小写字母i和大写字母 阅读全文
posted @ 2021-11-09 12:51 水凤火凰 阅读(59) 评论(0) 推荐(0)
摘要: 所有程序的开始,都是hello,world! print('Hello,World!') 阅读全文
posted @ 2019-04-12 14:03 水凤火凰 阅读(65) 评论(0) 推荐(0)
摘要: 对象=属性+方法 对象的方法调用 导入与继承 阅读全文
posted @ 2019-03-07 10:33 水凤火凰 阅读(96) 评论(0) 推荐(0)