讀取檔案 :讀取所有行並以list方式回傳資料. articleFile = open(r"article.txt", "r") content = articleFile.readlines() print(content) print(content[1]) # 顯示 ...
確定! 回上一頁