gpt4 book ai didi

python - 在无限 while 期间写入文件

转载 作者:行者123 更新时间:2023-12-01 08:27:47 26 4
gpt4 key购买 nike

我需要在无限时间内写入txt文件。但这不是写作,如果我在它工作时不使用无限。我必须改变什么?我的目标是无限次 ping 不同的 ip,当 ping 失败时,会将时间和日期写入文件中

我已经尝试过没有 while True 的代码并且它有效。我认为代码需要停下来写,但是我们可以不停下来吗?

import os
import datetime

fichier = open("log.txt", "a")
date = datetime.datetime.now()

hostnames = [
'192.168.1.1',
'192.168.1.2',
'192.168.1.3',
]
while True :
for hostname in hostnames:
ping = os.system(" Ping " + str(hostname))
if ping == 1:
print("DOWN")
fichier.write(str(date) + " " + str(hostname) + '\n' + '\n')
else:
print("UP")

我期望失败时的输出,带有时间戳日期/时间和 IP 地址

最佳答案

将所有答案总结为一个:

try:
with open('log.txt', 'a') as fichier:
while True:
for hostname in hostnames:
ping = os.system(" Ping " + str(hostname))
if ping == 1:
print("DOWN")
fichier.flush()
fichier.write(str(date) + " " + str(hostname) + '\n' + '\n')
else:
print("UP")
except KeyboardInterrupt:
print("Done!")

关于python - 在无限 while 期间写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54111790/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com