About 10,600,000 results
Open links in new tab
  1. Sum the Digits of a Given Number - Python - GeeksforGeeks

    Feb 24, 2025 · The task of summing the digits of a given number in Python involves extracting each digit and computing their total . For example, given the number 12345, the sum of its digits is 1 + 2 + 3 + 4 + 5 = 15. Using modulo (%)

  2. Sum Of Digits Of A Number In Python

    Aug 25, 2024 · Learn how to calculate the sum of digits of a number in Python using different methods like while loop, function, without loop and using recursion.

  3. Python Program to Find Sum of Digits of a Number

    In this section, we discuss how to write a Python Program to Find the Sum of Digits of a Number using a While Loop, for loop, Functions, and Recursion. This program allows the user to enter any positive integer. Then, the program divides the given number into individuals and adds those individual (Sum) digits using the While Loop.

  4. python - Sum the digits of a number - Stack Overflow

    If you want to keep summing the digits until you get a single-digit number (one of my favorite characteristics of numbers divisible by 9) you can do: x = sum(int(digit) for digit in str(n)) if x < 10: return x. else: return digital_root(x) Which actually turns out to be pretty fast itself... Me too, what is it with divisible by 9?

  5. Sum of Digits of a Number in Python - PrepInsta

    Given an input the objective to find the Sum of Digits of a Number in Python. To do so we’ll first extract the last element of the number and then keep shortening the number itself. Given a …

  6. Sum of Digits of a Number in Python (4 Programs)

    Learn how to find the sum of digits of a number in Python with 4 different programs. Explore multiple methods with examples, outputs, and explanations.

  7. Sum of Digits of a number in python – allinpython.com

    In this post, we will learn how to write a python program to find the Sum of digits of a given number with its algorithm and explanation in detail. So let’s start with the algorithm. 1. 2. (sum_of_digit = 0). 3. 4.

  8. Python: Calculate sum of digits of a number - w3resource

    Apr 16, 2025 · Write a Python program to check if the sum of digits of a number is an even or odd number. Write a Python program to find the sum of digits of a number repeatedly until a single …

  9. Python Program to find Sum of Digits - CodeToFun

    Oct 31, 2024 · Run the script to find the sum of digits for the specified number. The program defines a function sum_of_digits that takes an integer number as input and returns the sum of its digits. Inside the function, it uses a while loop to iterate through each digit of the number.

  10. Python Program to Add Digits of a Number - CodesCracker

    In this article, you will learn and get code in Python, to find and print the sum of digits of a number entered by user at run-time. Here are the list of approaches used to do the task: For example, if user enters a number say 235, then the output will be 2+3+5, that is 10.

  11. Some results have been removed
Refresh