我在python中創建了一個文本文件,我正在努力研究如何從python中的文本文件打印某些行。希望可以有人幫幫我。我知道它與f.write或f.read有關。從python中讀取和寫入文件
-5
A
回答
0
你可以嘗試這樣的事:
f = open("C:/file.txt", "r") #name of file open in read mode
lines = f.readlines() #split file into lines
print(lines[1]) #print line 2 from file
+0
謝謝,這真的有幫助 – H14
0
with open('data.txt') as file_data:
text = file_data.read()
如果您正在使用*上傳.json文件很好的解決方案是:
data = json.loads(open('data.json').read()))
0
使用with
關鍵詞來自動處理文件後閉幕打開文件。
with open("file.txt", "r") as f:
for line in f.readlines():
print line #you can do whatever you want with the line here
即使您的程序在執行期間中斷,它也會處理文件關閉。另一種 - 做同樣的手動方式是:
f = open("file.txt", "r")
for line in f:
print line
f.close()
但要小心,只有在你的循環執行後纔會關閉。也可以看到這個答案Link
相關問題
- 1. 從python中讀取/寫入android文件
- 2. 在Python中讀取和寫入文件
- 3. 寫入和從文件中讀取
- 4. 從plist文件中寫入和讀取
- 5. Python:讀取和寫入CSV文件
- 6. Python - 寫入和讀取臨時文件
- 7. Python快速讀取和寫入文件
- 8. Python:讀取和寫入多個文件
- 9. 讀取和寫入文件python
- 10. 同時讀取和寫入python文件
- 11. 寫入和從Python中的文件讀取
- 12. Python如何從文件中讀取和寫入列表
- 13. 在Python中寫入文件,使用Arduino從文件中讀取
- 14. 從txt文件讀取和寫入
- 15. 從文件讀取和寫入
- 16. 從csv文件讀取和寫入
- 17. Android - 從文件讀取和寫入
- 18. 從文件讀取和寫入
- 19. 讀取和寫入文件
- 20. 讀取和寫入文件
- 21. 讀取和寫入文件
- 22. 寫入和讀取文件
- 23. 在Python中讀取/寫入文件
- 24. 使用Python和Javascript從Json文件讀取和寫入
- 25. python從文件中讀取寫入其他文件
- 26. 使用Python從MS Azure讀取和寫入文件
- 27. NSDocumentDirectory - 寫入並從文件中讀取
- 28. 從文件中讀取/寫入對象
- 29. 用c從/中讀取/寫入文件
- 30. 在iPhone中讀取和寫入文件
可能重複[Python:逐行讀入文件到數組中](http://stackoverflow.com/questions/3277503/python-read-file-line-by-line-into-array ) – 2016-02-19 13:19:16
您可能錯過了本教程中有關[讀寫文件](https://docs.python.org/3.5/tutorial/inputoutput.html#reading-and-writing-files)的部分。 – Matthias