I am getting an error here and I am wondering if any of you can see where I went wrong. I am pretty much a beginner in python and can not see where I went wrong.
temp = int(temp)^2/key
for i in range(0, len(str(temp))):
final = final + chr(int(temp[i]))
"temp" is made up of numbers. "key" is also made of numbers. Any help here?
tempis anint, so you can't writetemp[i]– TJD Aug 7 '12 at 4:41final = final + chr(int(temp[i])) TypeError: 'int' object is not subscriptable– user1580845 Aug 7 '12 at 4:41