摘要:
点击任务-configure-Build Triggers 勾选定时构建,20,29 17 * * 1-5表示,每周一到周五,17点20分,17点29分各执行一次 阅读全文
摘要:
# 获取文件时间(浮点数格式)csv_time = os.path.getmtime("C:/Users/DELL/Desktop/20000/allqueryCommodity.csv")print("csv_time",csv_time) # 结果:1682402963.033327# 把浮点数 阅读全文
摘要:
一、时间的表示格式 在Python中,表示时间的格式有4种较为常用,分别是浮点数格式、标准可读格式、格式化格式以及自定义格式。(名字是自己起的,非官方命名) (1)浮点数格式 用一个float格式的浮点数表示时间,其具体含义表示为从世界标准纪元时间(1970年1月1日)起算至该时间节点的秒数。 (2 阅读全文
摘要:
1,用python判断文件是否已存在 if os.path.exists("C:/Users/DELL/Desktop/20000/check_queryTrades_result.csv") == True: print("文件已存在") 阅读全文
摘要:
1,创建每3秒执行一个定时任务 import schedule def task(): print("3秒执行一次任务") def func(): # 清空任务 schedule.clear() # 创建一个任务 schedule.every(3).seconds.do(task) while Tr 阅读全文
摘要:
1,查看python版本,输入python 2,查看python路径,输入whereis python 阅读全文