Ch 29 practice solution

 number=input("enter the number")

total=0

i=0

while i<len(number):

total+=int(number[i])

i+=1

print(total)

##I not complete the  program I got help to video

Comments