10 2021 档案
摘要:windows 电脑使用 git 软件 百度网盘:链接:https://pan.baidu.com/s/1CGkOFrcZh27niSd_3xhFog 提取码:v1mg 安装 安装 TortoiseGit-LanguagePack-2.11.0.0-64bit-zh_CN 非常容易安装完成。 安装
阅读全文
摘要:设置时间限制,等待任务结束 import time print('start task and wait') waitflag = 0 timeline = 10 while True: time.sleep(60) print('check process and get result') tas
阅读全文
摘要:linux 命令 shell 基本语法 进程相关 杀掉进程 kill `ps -efww | grep 项目名 | grep -v grep | grep -v less | awk '{print $2}'` 查看进程号 ps -efww | grep 项目名 | grep -v grep | g
阅读全文
摘要:排序问题 1. 找到列表中的差值最小的两个值 # 找到列表中差值最小的两个数字 demo = [1, 25, 55, 9, 20] # 首先 降序排列 demo.sort(reverse=True) print(demo) # 计算得到差值 demo_list = [[(demo[i] - demo
阅读全文