Advertisements
Advertisements
Question
Input a string having some digits. Write a function to return the sum of digits present in this string.
Solution
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
APPEARS IN
RELATED QUESTIONS
State True or False with reason.
scanf() function is used to input string having multiple words.
State True or False with reason.
There is no difference between ‘\0’ and ‘0’.
Write a program to calculate number of vowels (a, e, i, o, u) separately in the entered string.
Write user defined function to implement string concatenation.
Implement string copy function STRCOPY (str1,str2) that copies a string str1 (source) to another string str2 (destination) without using library function.
Explain any 4 functions from string.h header file with suitable examples.
Consider the following string mySubject:
mySubject = "Computer Science"
What will be the output of the following string operation:
print(mySubject[0: len(mySubject)])
Consider the following string mySubject:
mySubject = "Computer Science"
What will be the output of the following string operation:
print(mySubject[-7: -1])
Consider the following string mySubject:
mySubject = "Computer Science"
What will be the output of the following string operation:
print(mySubject[::2])