Python練習題 了解常用字典函式及方法

2021-10-06 07:00:31 字數 1443 閱讀 6489

# 了解常用字典函式及方法

# # 1.len()

# # 2.str()

# # 3.type()

# # 4.clear()

# # 5.copy()

# # 6.fromkeys()

# # 7.get()

# # 8.key in dict

# # 9.items()

# # 10.keys()

# # 11.update()

# # 12.values()

# 13.popitem()

dict

=# # 1.len()計算字典元素個數,即鍵的總數

# print(len(dict))

# # 2.str()輸出字典,以可列印的字串表示

# print(str(dict))

# # 3.type()返回輸入的變數型別,如果變數是字典就返回字典型別。

# print(type(dict))

# # 4.clear()清空字典

# dict.clear()

# print(dict)

# # 5.copy()拷貝字典

# dict1=dict.copy()

# print(dict1)

# # 6.fromkeys()用於建立乙個新字典,以序列 seq 中元素做字典的鍵,value 為字典所有鍵對應的初始值

# print(dict.fromkeys([1,2,3],[10,20,30]))

# # 7.get()提取鍵中對應值

# print(dict.get('name'))

# # 8.key in dict如果鍵在字典dict裡返回true,否則返回false

# print('bj' in dict)

# print('name' in dict)

# # 9.items()以列表返回可遍歷的(鍵, 值) 元組陣列

# dict1=[(k,v) for k,v in dict.items()]

# print(dict1)

# # 10.keys()

# dict1=dict.keys()

# print(dict1)

# # 11.update()把字典dict2的鍵/值對更新到dict裡

# dict1=

# dict.update(dict1)

# print(dict)

# # 12.values()取字典中的值

# print(dict.values())

# 13.popitem()隨機返回並刪除字典中的最後一對鍵和值

dict1=

dict

.popitem(

)print

(dict

)print

(dict1)

Python練習題 了解常用列表函式及方法

了解常用列表函式及方法 1.len 2.max 3.min 4.list 6.list.count 7.list.extend 8.list.index 9.list.insert 10.list.pop 11.list.remove 12.list.reverse 13.list.sort 14....

Python練習題 常用字串函式及方法

常用字串函式及方法 1.capitalize將字串的第乙個字元轉換為大寫 res str.capitalize print res 2.str.center width fillchar 返回乙個指定的寬度 width 居中的字串,fillchar 為填充的字元,預設為空格。res str.cent...

python 字典練習題

標準的字典資料 dict 1 兩字典相加 one dict two list 兩個字典相加 合併為 第三個字典 one dict.update two list print one dict 修改字典 修改字典 one dict age 10 print one dict age 等同於 print...