如何逐行读取延迟?

时间:2018-10-19 22:40:30

标签: python python-2.7

我有一个带有单词列表的txt文件,我想阅读:

  1. 每个单词(来自txt文件)的延迟时间为10秒,然后执行“操作”。然后阅读第二个单词和“做某事”等。
  2. 四个单词(在同一时间)具有相同的延迟。

我正在使用Python27。

我的代码是:

# Read text file
with open('D:\My_Path.txt', 'r') as fp:
lines = [line.rstrip('\n') for line in fp.readlines()]
time.sleep(10)  # does not work well
for line in lines:
    print (line)

def AB ():
    '''Do something'''
AB ()

1 个答案:

答案 0 :(得分:2)

在开头添加import time,例如time.sleep(.3)之前的print(line)