📌  相关文章
📜  python 3 文本文件长度 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:59.601000             🧑  作者: Mango

代码示例1
f = open("filename", "r") #Load file in any mode that's able to read, ie r, r+, w+ etc

#to get length
len(f.readlines())

#To iterate over each line
for line in f.readlines(): #file.readlines(), splits the file into a list, where each element is a seperate line
  print(line)