python定时输出导出到txt
时间: 2023-06-10 15:09:14 浏览: 189
定时任务.txt
您可以使用Python的time模块和文件操作函数来实现定时输出并导出到txt文件。
下面是一个示例代码:
```python
import time
# 定义文件名和定时输出的时间间隔(单位:秒)
filename = "output.txt"
interval = 10
# 循环输出并写入文件
while True:
text = "Hello, world! The time is: " + time.strftime("%Y-%m-%d %H:%M:%S") + "\n"
print(text)
with open(filename, "a") as file:
file.write(text)
time.sleep(interval)
```
这个代码会输出当前时间,并将其写入到名为"output.txt"的文件中。每隔10秒钟输出一次,直到程序被手动停止。您可以根据自己的需求更改文件名和输出时间间隔。
阅读全文