Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
353 views
in Technique[技术] by (71.8m points)

python - 如何将文件逐行读取到列表中?(How to read a file line-by-line into a list?)

How do I read every line of a file in Python and store each line as an element in a list?

(如何在Python中读取文件的每一行并将每一行作为元素存储在列表中?)

I want to read the file line by line and append each line to the end of the list.

(我想逐行读取文件,并将每行追加到列表的末尾。)

  ask by Julie Raswick translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
with open(filename) as f:
    content = f.readlines()
# you may also want to remove whitespace characters like `
` at the end of each line
content = [x.strip() for x in content] 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...