帮助https://docs.python.org/2/library/functions.html dir() 函数 D:\pythontest>python Python (v3. , ::) [MSC v. bit (AM D64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>…
Python字典包含了以下内置方法: clear()函数用于删除字典内所有元素 dict1 = {, 'Class': 'First'} print('the start len %d' % len(dict1)) dict1.clear() print('the end len %d' % len(dict1)) 结果: [python@master tmp]$ python3 c.py the start len the end len copy() 函数返回一个字典的浅复制 例子1: di…