In this tutorial, we will discuss a concept of Python program to compute the sum of digits in a given numbers
In this article, we are going to learn how to find the sum of digits in a given numbers in Python programming language
Program 1
num=int(input("Enter a number: ")) #input from the user sum=0 while(num>0): digit=num%10 sum=sum+digit num=num//10 print("The sum of digits is: ",sum)
When the above code is executed, it produces the following results
Case 1
Enter a number: 123 The sum of digits is: 6
Case 2
Enter a number: 54321 The sum of digits is: 15
Approaches:
Similar post
C program to compute the sum of digits in a given numbers
Java program to compute the sum of digits in a given numbers
C++ program to compute the sum of digits in a given numbers
Python program to compute the sum of digits in a given numbers
Addition of two numbers in Java using method
5 method to find sum of two numbers
JavaScript program to add two numbers
Suggested for you
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…