Python練習題19 《沉默的羔羊》之最多單詞

2021-10-10 08:59:07 字數 738 閱讀 7461

("e:\\lx\\沉默的羔羊.txt"

, encoding=

'utf-8'

).read(

)words = jieba.lcut(txt)

#精確模式分詞,返回乙個列表型別

d =#建立乙個空字典,用來存放鍵值對資料

for word in words:

d[word]

= d.get(word,0)

+1#如果這個詞語(鍵)在字典中,其值+1,不在則賦以0

maxc =

0maxw =

""for key in d:

if d[key]

> maxc and

len(key)

>2:

maxc = d[key]

#次數 maxw = key #單詞

if d[key]

== maxc and

len(key)

>

2and key > maxw:

#出現頻率一致,按照unicode排序

maxw = key

print

(maxw)

python的練習題 Python練習題

1 使用while迴圈輸入1 2 3 4 5 6 8 9 10 i 0while i 10 i i 1 if i 7 continue print i 結果 e python python python test.py1 2 求1 100的所有數的和 i 0sum 0 while i 100 i 1...

python書中練習題 python練習題

1 定義乙個空列表,接收從鍵盤輸入的整數,把列表傳給乙個從大到小排序的函式,再輸出排序後的列表的值 listex b 0 a int input 請輸入列表長度 while b a num int input 請輸入字元 b 1 print listex sum 0 for i in range 0...

C 19道練習題

1.計算1 100之和 int sum 0 for int i 1 i 101 i 2.計算1 100所有偶數之和 使用do while實現 int sum 0 int count 1 do count while count 101 3.老師每天檢查張三的學習是否合格,如果不合格,則繼續學習,否則...