Python字典與集合操做總結

[python] view plain copy 一.建立字典   方法①:   >>> dict1 = {}   >>> dict2 = {'name': 'earth', 'port': 80}   >>> dict1, dict2   ({}, {'port': 80, 'name': 'earth'})      方法②:從Python 2.2 版本起   >>> fdict = dict
相關文章
相關標籤/搜索