Buildin Function Python Tutorial

dict = {}
string="1234"
for i,ch in enumerate(string):
    dict[i] = ch
    
print dict