Write a Python program to calculate sum of digits of a number.

Write a Python program to calculate sum of digits of a number.

1
2
3
4
5
6
num = int(input("Input a four digit numbers: "))
x  = num //1000
x1 = (num - x*1000)//100
x2 = (num - x*1000 - x1*100)//10
x3 = num - x*1000 - x1*100 - x2*10
print("The sum of digits in the number is", x+x1+x2+x3)

Final output

Leave a Comment