<分区> 分区>
我需要打开一个文件并每秒调用一次 readlines()
函数,每天 24 小时 - 它不会(过一会儿)损坏我的硬盘吗?
import time
while True:
with open(filePath,'r') as f:
lines = f.readlines()
# do things with lines
time.sleep(1)
<分区> 分区>
我需要打开一个文件并每秒调用一次 readlines()
函数,每天 24 小时 - 它不会(过一会儿)损坏我的硬盘吗?
import time
while True:
with open(filePath,'r') as f:
lines = f.readlines()
# do things with lines
time.sleep(1)