Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 17 Online
OpenStudy (anonymous):

i have a program assignment. this is the problem: Input a number and store the integers of the number to the elements of the array. print the integers and the sum of the integers from the array. my program is wrong :( can someone help me please

OpenStudy (maitre_kaio):

sure, show us the code

OpenStudy (anonymous):

i assume this i wat your looking for , not the easiest way to do it , but it works def convertnumber(): number = raw_input('please enter a number ') convernum = [] i = 0 sumd = [0] while i < len(number): convernum.append(int(number[i])) sumd.append(convernum[i]+sumd[-1]) print convernum[i] i = i + 1 print convernum print sumd[-1]

OpenStudy (anonymous):

http://dpaste.com/704760/

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!