Python 字典Dictionary copy() 方法 Python 字典Dictionary clear() 方法 Python 字典Dictionary fromkeys() 方法 Python 字典Dictionary copy() 方法 #!/usr/bin/python dict1 = {'Name': 'Zara', 'Age': 7}; dict2 = dict1.copy() print "New Dictionary : %s" % str(dict2) Python 字典Dictionary clear() 方法 Python 字典Dictionary fromkeys() 方法