Dictionary Python

d = {}
print d.has_key('name')
d['name'] = 'Eric'
print d.has_key('name')