摘要: 1 import schedule 2 import time 3 4 def start(): #定义一个函数 5 print("****") 6 7 8 if __name__ == '__main__': 9 schedule.every(2).seconds.do(start) #它的意思就 阅读全文
posted @ 2020-01-08 14:16 kongbursi 阅读(3526) 评论(0) 推荐(0) 编辑