通过open 方法打开 test .py 文件,以读" r "的方式打开。通过 调用readlines() 方法逐行的来读取文件。中的数据 try的语句块中,用 for 循环来逐行的打印 test.py 文件中的数据,每循环一次休眠一下。在 finally 语句块中执行文件的 close() 操作。
源码:
import time
testfiles= open("test.py",'r', encoding='utf-8')
strings=testfiles.readlines()
try:
for line in strings:
print(line)
time.sleep(1)
finally:
testfiles.close()
print ("关闭文件")
输出: