Python 字典Dictionary clear() 方法 Python 字典Dictionary type() 方法 Python 字典Dictionary copy() 方法 Python 字典Dictionary clear() 方法 #!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7}; print "Start Len : %d" % len(dict) dict.clear() print "End Len : %d" % len(dict) Python 字典Dictionary type() 方法 Python 字典Dictionary copy() 方法