Skip to content

Commit 9899eab

Browse files
Code - sum of digits of a number
1 parent bc55e2a commit 9899eab

File tree

1 file changed

+28
-8
lines changed

1 file changed

+28
-8
lines changed

Sum of digits of a number.py

+28-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,33 @@
1-
q=0 # Initially we assigned 0 to "q", to use this variable for the summation purpose below.
2-
# The "q" value should be declared before using it(mandatory). And this value can be changed later.
1+
# Python code to calculate the sum of digits of a number, by taking number input from user.
32

4-
n=int(input("Enter Number: ")) # asking user for input
5-
while n>0: # Until "n" is greater than 0, execute the loop. This means that until all the digits of "n" got extracted.
3+
import sys
64

7-
r=n%10 # Here, we are extracting each digit from "n" starting from one's place to ten's and hundred's... so on.
5+
def get_integer():
6+
for i in range(3,0,-1): # executes the loop 3 times. Giving 3 chances to the user.
7+
num = input("enter a number:")
8+
if num.isnumeric(): # checks if entered input is an integer string or not.
9+
num = int(num) # converting integer string to integer. And returns it to where function is called.
10+
return num
11+
else:
12+
print("enter integer only")
13+
print(f'{i-1} chances are left' if (i-1)>1 else f'{i-1} chance is left') # prints if user entered wrong input and chances left.
14+
continue
15+
816

9-
q=q+r # Each extracted number is being added to "q".
17+
def addition(num):
18+
Sum=0
19+
if type(num) is type(None): # Checks if number type is none or not. If type is none program exits.
20+
print("Try again!")
21+
sys.exit()
22+
while num > 0: # Addition- adding the digits in the number.
23+
digit = int(num % 10)
24+
Sum += digit
25+
num /= 10
26+
return Sum # Returns sum to where the function is called.
1027

11-
n=n//10 # "n" value is being changed in every iteration. Dividing with 10 gives exact digits in that number, reducing one digit in every iteration from one's place.
1228

13-
print("Sum of digits is: "+str(q))
29+
30+
if __name__ == '__main__': # this is used to overcome the problems while importing this file.
31+
number = get_integer()
32+
Sum = addition(number)
33+
print(f'Sum of digits of {number} is {Sum}') # Prints the sum

0 commit comments

Comments
 (0)