摘要:
gnome-terminal gnome-terminal -- bash -c "your_command; exec bash" 在新终端中执行指令后关闭 常用 printenv # 显示环境变量 lspci|grep nvidia # 是否有nvidia的显卡 lscpu # CPU的相关信息 阅读全文
2021年8月6日
2021年7月30日
2021年7月8日
摘要:
关键字参数 def func(a, b=5, c=10): print('a is', a, 'and b is', b, 'and c is', c) func(3, 7) func(25, c=24) func(c=50, a=100) 输出: $ python function_keyword 阅读全文
2021年7月2日
摘要:
os模块 os.path.exists('D:/xx') # 文件存在与否进行判断,也可以是文件夹。 存在返回True os.path.getctime('D:/xx') # 获取文件的创建时间 为time.time()类似的数字 os.path.isdir(path) # 此路径是目录还是文件 o 阅读全文
2021年6月30日
摘要:
命名 常用简写 名称相关 # 信息 information: info # 功能 function : func # 数量 quantity:qty # 元素uiautomatr id_ text_ des_ class_ PYQT相关 button : btn_ checkbox : chkbox 阅读全文
2021年6月23日
摘要:
一、基本 变量 let:只在块内 var:块外没有 常量 数据类型:undefined Number String Bool 运算符 二、流程控制 if switch for 循环 while do while 三、数组 函数 数组: let b = ["a","b"] let a = new Ar 阅读全文
2021年6月9日
2021年6月7日
摘要:
PYSIDE2 添加外部工具 file settings External Tools,点击左上角的 加号+ designer 位置: envs\QT6\Lib\site-packages\PySide6\designer.exe uic 位置:envs\QT6\Scripts\pyside6-ui 阅读全文
2021年6月4日
摘要:
标贴打印机 目前使用的打印机有两种一种是 热敏打印机:DL-888F 热转印打印机: ZEBRA GT800 一、GT800 耗材 1、碳带 必须用 树脂基碳带,用蜡基或混合基碳带打印出的标贴易掉墨 推荐: https://item.m.jd.com/product/35299805990.html 阅读全文