python文件讀取小案例三

對文本中的內容進行讀取 file = open('my file.txt','r') content = file.read() print(content) 結果: 列表形式的讀取 file = open('my file.txt','r') content = file.readlines() print(content) 結果:
相關文章
相關標籤/搜索