×
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
6456    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.
Albert Einstein
It is the supreme art of the teacher to awaken joy in creative expression and knowledge.
Albert Einstein
1551
84.84
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54760
25/06/2018     45870
01/01/2018     44079
28/06/2017     41623
02/08/2017     40720
01/08/2017     34717
06/07/2017     34494
15/05/2017     33709
11/09/2018     31279
14/07/2017     30574
softetechnologies