全部博文(236)
分类: Python/Ruby
2022-12-09 16:20:36
通过搜索发现
time中有函数可以延迟
还可以让程序无限循环
现在需要两个程序的整合
思路就是
import time while True: print(time.asctime()) time.sleep(1)
成功是成功了
用ctrl+c停下来
#使用python3 执行 sleep.py python3 sleep.py
但是我想直接运行
我们把两个程序整合起来了
但是我想在 shell 里面