英文詞頻統計預備,組合資料型別練習

2021-09-25 22:25:41 字數 1103 閱讀 1665

q='''

oh, mr.sun, sun, mr.golden sun, please shine down on me! oh mr.sun, sun, mr.golden sun, hiding behind a tree. little children are asking you. please come out so we can play with you. oh mr.sun, sun, mr.golden sun, please shine down on me!

'''q=str.lower(q)

q=q.replace('

,','')

q=q.replace('

.','')

q=q.replace('

!','')

t=q.count('

sun'

)

列表例項:由字串建立乙個作業評分列表,做增刪改查詢統計遍歷操作。例如,查詢第乙個3分的下標,統計1分的同學有多少個,3分的同學有多少個等。

number=int(input('

請輸入分數:'))

score=list('

111222333123')

a=str(score.index('3'

))print('

第乙個三分位置為:

'+a)

print('

一分同學的個數:

'+str(score.count('1'

)))print('

三分同學的個數:

'+str(score.count('3'

)))#

追加乙個同學分數1'

)print

(score)

#刪除下標為 2 同學的分數

簡要描述列表與元組的異同

1.元組是不可變的, 而列表是可變的。

2.元組通常由不同的資料,而列表是相同型別的資料佇列。元組表示的是結構,而列表表示的是順序。

組合資料型別綜合練習 英文詞頻統計

字串 str this is python for i in str print i 列表 str ok hi 1997,1,1 for i in str print i 元組 str2 ok hi 1997,1,1 for i in str2 print i 集合 str4 2,2,3,4,4,5...

組合資料型別練習,英文詞頻統計例項

score list 21223113321 print 作業評分列表 score 3 print 增加 score score.pop print 刪除 score score.insert 2,1 print 插入 score score 2 2 print 修改 score print 第乙個...

組合資料型別練習,英文詞頻統計例項

列表例項 由字串建立乙個作業評分列表,做增刪改查詢統計遍歷操作。例如,查詢第乙個3分的下標,統計1分的同學有多少個,3分的同學有多少個等。a list 1123231132213 a 1 1 2 3 2 3 1 1 3 2 2 1 3 a 3 4 a 1 1 2 4 2 3 1 1 3 2 2 1 ...