基本上我希望我的Python代碼能夠讀取我在.txt文件中的行,並在調用時將其打印出來放在另一個文件中。Python 3.6打印出.txt文件中的文本
我曾嘗試:
var = open("Test.txt")
print(var)
我也使用readlines方法()嘗試:
var = open("Test.txt")
abcd = var.readlines()
print(abcd)
而我所得到的,當我使用:
<_io.TextIOWrapper name='Test.txt' mode='r' encoding='US-ASCII'>
你需要解決你的問題,以正確顯示你的代碼塊。 – pstatix
abcd的結果應該是一個字符串列表。 TextIOWrapper是var的值。請查看文檔以獲取關於TextIO的更多信息https://docs.python.org/3/library/io.html#io.TextIOBase – ZzCalvinzZ
您通常會使用'var = open(「Test.txt」)。readlines( )'然後'print(var [0])'打印第一行。您發佈的堆棧跟蹤不完整。如果您發佈其他內容,則更有可能獲得幫助。這裏是'readlines()'的文檔https://docs.python.org/2/tutorial/inputoutput.html#methods-of-file-objects – 16num