More

    Python Program to Check Prime Number

    Prime Numbers

    Prime numbers are those that can only be divided by themselves and one. They are the foundation for our number system and can be found in nature, art, and music.

    The first prime numbers are 2, 3, 5, 7, 11, and 13. But there are infinitely many prime numbers! The largest known prime number is 274,207,281-1. It’s a whopper!

    Prime Numbers Between 1 and 100
    Prime Numbers Between 1 and 100

    Prime numbers have fascinated mathematicians for centuries. They are full of patterns and mysteries. For example, the prime numbers seem to be randomly distributed, but there are actually more primes than can be expected by chance.

    And there are infinitely many twin primes, a pair of prime numbers that differ by 2. (For example, 3 and 5 or 11 and 13.)

    Program Code

    num = int(input("Enter a number: "))
    
    # prime numbers are greater than 1
    if num > 1:
       # check for factors
       for i in range(2,num):
           if (num % i) == 0:
               print(num,"is not a prime number")
               break
       else:
           print(num,"is a prime number")
    
    # if input number is less than
    # or equal to 1, it is not prime
    else:
       print(num,"is not a prime number")

    Example 1:

    Input Given:

    Enter a number: 3

    Output Expected:

    3 is a prime number

    Example 2:

    Input Given:

    Enter a number: 69

    Output Expected:

    69 is not a prime number

    Code Explanation

    1. We are taking input from the user and storing it in the variable num.
    2. Then we check if the number is greater than 1.
    3. We then use a for loop to check if the number is divisible by any number between 2 and itself.
    4. If the number is divisible by any number between 2 and itself, we are printing that the number is not a prime number.
    5. If the number is not divisible by any number between 2 and itself, we are printing that the number is a prime number.
    6. If the number is less than or equal to 1, we are printing that the number is not a prime number.
    Disclaimer: While we make every effort to update the information, products, and services on our website and related platforms/websites, inadvertent inaccuracies, typographical errors, or delays in updating the information may occur. The material provided on this site and associated web pages is for reference and general information purposes only. In case of any inconsistencies between the information provided on this site and the respective product/service document, the details mentioned in the product/service document shall prevail. Subscribers and users are advised to seek professional advice before acting on the information contained herein. It is recommended that users make an informed decision regarding any product or service after reviewing the relevant product/service document and applicable terms and conditions. If any inconsistencies are observed, please reach out to us.

    Latest Articles

    Related Stories

    Leave A Reply

    Please enter your comment!
    Please enter your name here

    Join our newsletter and stay updated!