Calculations

Python program to compute the sum of digits in a given numbers

Python program to compute the sum of digits in a given numbers

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

Compute the sum of digits in a given numbers using while loop

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:

  1. Takes the value of the integer and store the variable num
  2. Declare and initialize the variable sum to zero
  3. Get the each digits of numberand add the digits to a variable using while loop
  4. Print sum of the digits of the number

 

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 

PHP Addition of two numbers 

 

 

Suggested for you

for loop in Python language

while loop in Python language

Operator in Python language

Data type in Python language

 

 

 

C++ program to compute the sum of digits in a given numbers
C++ program to add two numbers using pointer
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

1 month ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

1 month ago