×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Swap Numbers - Python CBSE Divisor, Check Prime Numbers
Sum of Digits, Reverse A Numbers, Check Palindrome Number Or Not - Python Language
5624    Arnab De    12/09/2020

Write a program to find out the sum of the digits of a number. Number should read from the user or keyboard.

	no=int(input("Enter a number"))
	s=0
	while(no>0):
		r=no%10
		s=s+r
		no=no//10   #return integer part of the result
	print("Sum is :",s)
softetechnologies

Write a program to find out reverse of a number. Number should read from the user or keyboard.

	no=int(input("Enter a number"))
	s=0
	while(no>0):
		r=no%10
		s=(s*10)+r
		no=no//10   
	print("Reverse numbers is :",s)
softetechnologies

Write a program to check a number is palindrome or not. Number should read from the user or keyboard.

	no=int(input("Enter a number"))
	temp=no
	s=0
	while(no>0):
		r=no%10
		s=(s*10)+r
		no=no//10
	if(s==temp):
		print(temp," is a palindrom Number")
	else:
		print(temp," is not a palindrom Number")
softetechnologies
Swap Numbers - Python CBSE Divisor, Check Prime Numbers
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
It is no easy task to lead men. But it is easy enough to drive them.
Rabindranath Tagore
2105
63.45
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     46744
25/06/2018     38887
01/01/2018     38546
28/06/2017     36472
02/08/2017     35190
01/08/2017     29444
06/07/2017     29200
15/05/2017     28721
14/07/2017     24570
11/09/2018     23623
softetechnologies