python 获取list 的 index

f = open("text.txt", encoding="utf8")

 

for index,line in enumerate(f.readlines()):  #文件对象的readlines返回的是list,enumerate方法是获取list的index和对应的内容

  pass  

转载于:https://www.cnblogs.com/somethingintheway/p/9766934.html

你可能感兴趣的:(python 获取list 的 index)