Answers for "count numbers that add up to 10 in python"

0

count numbers that add up to 10 in python

# print numbers that add up to 10. (19 => 1 + 9 = 10)

x = 0

for i in range(100):
	for j in str(i):
		x+=int(j)
        
	if x == 10:
		print(i)
	x = 0
#															- sabz
Posted by: Guest on July-14-2021

Code answers related to "count numbers that add up to 10 in python"

Python Answers by Framework

Browse Popular Code Answers by Language