×
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
6044    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.
Swami Vivekananda
All that man has to do is to take care of three things; good thought, good word, good deed.
Swami Vivekananda
2324
74.33
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     52155
25/06/2018     43929
01/01/2018     42926
28/06/2017     40679
02/08/2017     39504
01/08/2017     33691
06/07/2017     33510
15/05/2017     32786
14/07/2017     29058
11/09/2018     29013
softetechnologies