Python 字典Dictionary update() 方法 Python 字典Dictionary setdefault() 方法 Python 字典Dictionary values() 方法 Python 字典Dictionary update() 方法 #!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} dict2 = {'Sex': 'female' } dict.update(dict2) print "Value : %s" % dict Python 字典Dictionary setdefault() 方法 Python 字典Dictionary values() 方法