遍歷列表
l = ["a","b","1",2]
print(l)
for i in l:
print(i)
print(type(i))
結果
['a', 'b', '1', 2]ab
12
遍歷字串
s = "abcde"
print(s)
for si in s:
print(si)
print(type(si))
結果
abcdeab
cde
遍歷字典
dic =
print(dic,type(dic))
for d in dic:
print(d,dic[d])
print(type(d))
結果
name lsj
age 18
遍歷集合
'''
python大型免費公開課,適合初學者入門
加qq群:579817333 獲取學習資料及必備軟體。
'''se =
print(set(se),type(se))
for se1 in se:
print(se1)
print(type(se1))
結果
aab2
141
遍歷元組
t = ("a","1","ab",1,2,4,)
print(t,type(t))
for t1 in t:
print(t1)
print(type(t1))
結果
('a', '1', 'ab', 1, 2, 4) a1ab
124
遍歷容器方法彙總
最近學了 list,set,map的遍歷,話不多說寫一手 首先是list遍歷 listlist new arraylist list.add jia list.add jin list.add jie 根據集合長度來遍歷 for int i 0 i list.size i 增強for迴圈,又稱for...
Python容器型別公共方法彙總
以下公共方法支援列表,元組,字典,字串。python 包含了以下內建函式 函式描述 備註len item 計算容器中元素個數 del item 刪除變數 del 有兩種方式 max item 返回容器中元素最大值 如果是字典,只針對 key 比較 min item 返回容器中元素最小值 如果是字典,...
python容器型別 列表的使用
python的容器主要包含列表列表,字典 1 列表物件的方法包含 index x 在列表中查詢值為x然後返回第乙個x的元素的下標,沒有找到時出錯 remove x 在列表中刪除第乙個值為x的元素,找不到時出錯 sort 對列表元素在原位排序,這個方法改變列表,而不是返回排序後的列表 reverse ...