Python Dictonary Set Default

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7}
print "Value : %s" %  dict.setdefault('Age', None)
print "Value : %s" %  dict.setdefault('Sex', None)

>>Value : 7
>>Value : None
Nervous Nightingale