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