Python程式設計基礎Task12

建國後的貓精發表於2020-10-05

習題P184

Python自帶的open可以開啟指定文字編碼的檔案。
只需要傳入encoding函式即可
2.

length = {}
with open('test.txt','r') as f:
    for i in f:
        print(i)
    word = i.split(' ')
    del word[len(word)-1]#刪除換行符號
    for i in range(len(word)):
        length[word[i]] = len(word[i])
    rst = max(length, key=length.get)  # 對比關鍵字為【字典的值】
    print(rst)

這是文字內容:
在這裡插入圖片描述
程式執行結果:
在這裡插入圖片描述

相關文章