f = open("text.txt", encoding="utf8")
for index,line in enumerate(f.readlines()): #文件对象的readlines返回的是list,enumerate方法是获取list的index和对应的内容
pass