字串:
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,6,7]str4 = set(str4)
for i in str4:
print(i)
列表,元組,字典,集合的聯絡與區別:
列表是用括起來,元組是用()括起來的,字典集合都是用{}括起來。
列表是可變序列,可以索引查詢元素進行增刪,而元組是唯讀列表,資料不可修改。
字典由一對對鍵值對組成,鍵唯一值不唯一,集合是由無序且不重複的資料組成。
組合資料型別綜合練習 英文詞頻統計 1
1.組合資料型別練習 分別定義字串,列表,元組,字典,集合,並進行遍歷。總結列表,元組,字典,集合的聯絡與區別。1.1字串 s1 i am reg,and i love maths for i in s1 print i i am r eg,a nd i love ma ths 1.2列表 lis ...
英文詞頻統計預備,組合資料型別練習
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 ...
組合資料型別練習,英文詞頻統計例項
score list 21223113321 print 作業評分列表 score 3 print 增加 score score.pop print 刪除 score score.insert 2,1 print 插入 score score 2 2 print 修改 score print 第乙個...