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