Python Program to Find Sum of Digits of a Number using While Loop
This Python sum of digits program allows the user to enter any positive integer. Then it divides the given number into individual digits and adds those individual (Sum) digits using Python While Loop.
Python Program to find Sum of Digits of a Number using While Loop
Number = int(input("Please Enter any Number: "))
Sum = 0
while(Number (less than) 0):
Reminder = Number % 10
Sum = Sum + Reminder
Number = Number //10
print("\n Sum of the digits of Given Number = %d" %Sum)
Смотрите видео Python program to find sum of digits of a number | How to find the sum of digits of a number Python онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Engineers Revolution 21 Апрель 2020, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 8,218 раз и оно понравилось 68 людям.