Dictionary Python Tutorial

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