python 讀取文字檔案

西北逍遥發表於2024-08-10

python 讀取文字檔案

# 開啟檔案
with open('myfile.txt', 'r') as file:
    # 讀取檔案內容
    content = file.read()
    
    # 列印檔案內容
    print(content)

##########################

相關文章