×
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
6159    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.
Nelson Mandela
An educated, enlightened and informed population is one of the surest ways of promoting the health of a democracy.
Nelson Mandela
2378
76.92
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     52684
25/06/2018     44415
01/01/2018     43158
28/06/2017     40865
02/08/2017     39802
01/08/2017     33902
06/07/2017     33713
15/05/2017     32965
11/09/2018     29408
14/07/2017     29317
softetechnologies