मराठी

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×