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