摘要: 1 %s 格式化字符串 2 f 占位符内包含变量.如{a} {b} a = 'xiaoliu' b = 12.35 print(f'{a}成绩提高了{b}') # xiaoliu成绩提高了12.35 3 format 阅读全文
posted @ 2022-07-31 21:11 tslam 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 参考1<不成熟> install_scripts.py 关注点: tar.gz解压后包,如何脚本安装 经过当时测试, 最后发现此类解压后包还是手动安装为好. import osimport subprocessimport timefrom icecream import icpkgs_path = 阅读全文
posted @ 2022-07-31 14:18 tslam 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 可以看出: 命令之间用&连接 from icecream import iccmd = f'cd ./{lib}'cmd1 = f'python setup.py install'# res = subprocess.Popen("dir",shell=True, stdout=subprocess 阅读全文
posted @ 2022-07-31 14:13 tslam 阅读(3548) 评论(0) 推荐(0) 编辑
摘要: 如下 其中: 直接右键以及以绝对方式运行是可以的 > python 绝对路径 阅读全文
posted @ 2022-07-31 12:56 tslam 阅读(916) 评论(0) 推荐(0) 编辑