Dictionary Python Tutorial

dict3 = {}
dict3[1] = 'abc'
dict3['1'] = 3.14159
dict3[3.2] = 'xyz'
print dict3