Python字典的操作
dict1={'yangrong': ['23', 'IT'], 'xiaohei': ['22', 'dota']} dict2={'yangrong': {'age': "23", 'job': "IT"}, 'xiaohei':{"'age':'22','job':'dota'"}} dict3={'yangrong': ['23', 'IT'], 'xiaohei': ['22', 'dota']} dict4 = {1 : 'apple', 2 : 'banana', 3 : 'orange'} dict5 = {4 : 'apples', 5 : 'bananas', 6 : 'oranges'} #dict4.update(dict1)#更新操作 print(dict1.items()) print(dict1.keys()) print(dict1.values()) print(len(dict1)) print(str(dict1)) print(dict1.clear()) print(str(dict1)) print(dict4.keys()) print(dict4.values()) seq = ('name', 'age', 'sex') dictq = dict.fromkeys(seq, dict4.__len__()) print(dictq)
相關文章
- Python中字典的操作Python
- python的字典及相關操作Python
- dict字典常用操作(python)Python
- python字典dict操作方法Python
- 3-python 元組 字典 集合的操作Python
- python字典基本認識和操作Python
- python操作字典型別的常用方法總結Python型別
- python中的字典賦值操作怎麼實現?Python賦值
- Python中字典dict的11種不同操作方法Python
- Python字典的各種操作新增/修改/更新等應用Python
- Python 這10個字典操作你必須知道Python
- python3.9中字典合併如何操作?Python
- Python 列表、元組、字典及集合操作詳解Python
- Python中的字典Python
- Python:字典的使用Python
- 『無為則無心』Python序列 — 21、Python字典及其常用操作Python
- 字典及相關操作
- Python字典的特性分析Python
- python字典的小例子Python
- 【Python】字典的setdefault()方法Python
- 05-Python—列表、元祖、字典、集合操作大全:建議收藏Python
- 職場科普,Python這6個字典操作你必須知道!Python
- python進階(24)Python字典的底層原理以及字典效率Python
- python-字典-如何取出字典中的所有值Python
- 什麼是字典?Python字典是可變的嗎?Python
- python-字典Python
- Python dict(字典)Python
- Python羅技字典Python
- python 字典排序Python排序
- python建立字典Python
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- Python字典遍歷的陷阱Python
- python中的集合與字典Python
- python中的字典學習Python
- Python中的列表、元祖、字典Python
- python3 字典的使用Python
- Python字典的高階用法Python