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

Write a python program to find the divisor of A Number.

Each and every number can divide by the 1 and itself. Here we find the other divisor of the nnumber. Now a number can divide by any number which is less than or equal of the half of the number.

no=int(input("Enter A Number : "))
for i in range(2,int(no/2)+1):
    if(no%i==0):
        print(i)
softetechnologies

Write a python program to check a number is prime or not.

Each and every number can divide by the 1 and itself. But some numbers are not divided by any other number except 1 and it self. Those numbers are known as Prime Numbers. Here we find the divisor the number. if a number has no divisor except 1 and itself then we can say that number is a prime number.

no=int(input("Enter A Number : "))
fl=1
for i in range(2,int(no/2)+1):
    if(no%i==0):
        fl=0
        break
if(fl==1):
    print(no," is a prime no")
else:
    print(no," is not a prime no")
softetechnologies

Write a python program to print all prime numbers from 10 to 100.

for no in range(10,101):
    fl=1
    for i in range(2,int(no/2)+1):

        if(no%i==0):
            fl=0
            break
    if(fl==1):
        print(no,", " ,end='')
Sum of Digits, Reverse A Numbers, Check Palindrome Number Or Not Fibonacci Sequence
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
47
59.22
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     44271
01/01/2018     36694
25/06/2018     36199
28/06/2017     34734
02/08/2017     33283
01/08/2017     27699
06/07/2017     27446
15/05/2017     27055
14/07/2017     22750
11/09/2018     21388
softetechnologies