हिंदी

Input a string having some digits. Write a function to return the sum of digits present in this string. - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Input a string having some digits. Write a function to return the sum of digits present in this string.

संक्षेप में उत्तर

उत्तर

Program:
#sumDigit function to sum all the digits
def sumDigit(string):
    sum = 0
    for a in string:
    #Checking if a character is digit and adding it
        if(a.isdigit()):
            sum += int(a)
    return sum

userInput = input("Enter any string with digits: ")

#Calling the sumDigit function
result = sumDigit(userInput)

#Printing the sum of all digits
print("The sum of all digits in the string '",userInput,"' is:",result)

OUTPUT:
Enter any string with digits: The cost of this table is Rs. 3450
The sum of all digits in the string ' The cost of this table is Rs. 3450 ' is: 12
shaalaa.com
String
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 8: Strings - Exercise [पृष्ठ १८८]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
अध्याय 8 Strings
Exercise | Q 4. | पृष्ठ १८८
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×