Question: Write a program in Python using for loop to print the sum of all the digits in the following string? c = ' 2 5

Write a program in Python using for loop to print the sum of all the digits in the following string?
c ='255319'
Group of answer choices
total =0
for i in c:
total = total + str(c)
print(total)
for i in c:
total =0
total = total + int(c)
print(total)
total =0
for i in c:
total = total + int(c)
print(total)
total =0
[ total+i for i in c]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!