Ad Code

Responsive Advertisement

Basic Python Program - 20.

Write a Python program takes in a number and finds the sum of digits in a number.

IDE: Visual Studio Code ( VSC ). Present: go2collage.


Download hole Program / Project code, by clicking following link:


Programming Code:

# Basic Python Program # finds the sum of digits in a number # for exp. 123 -> 1+2+3 = 6 num = int(input("Enter a number: ")) sum = 0 while num > 0: rem = num % 10 # rem is reminder sum = sum + rem num = num // 10 print(" sum of digits is: ", sum) # to print with input no. to change num from while to n1


Output:




Post a Comment

0 Comments

Ad Code

Responsive Advertisement