Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

Python Program to find Composite Number

Posted in Python Tutorial
Updated on Jan 11, 2024
By Mari Selvan
πŸ‘οΈ 454 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
Python Program to find Composite Number

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, identifying and working with different types of numbers is a fundamental skill.

A composite number is one that has more than two positive divisors, excluding 1 and itself. In this tutorial, we'll explore a python program that efficiently determines whether a given number is composite or not.

πŸ“„ Example

Let's dive into the python code that checks whether a number is composite or not.

is_composite.py
Copied
Copy To Clipboard
# Function to check if a number is composite
def is_composite(number):
    if number > 1:
        for i in range(2, number):
            if (number % i) == 0:
                return True  # The number has a divisor other than 1 and itself
        else:
            return False  # The number is not divisible by any other number
    else:
        return False  # Numbers less than or equal to 1 are not considered composite

# Default input value
default_input = 12

# Check if the default input is a composite number
if is_composite(default_input):
    print(f"{default_input} is a composite number.")
else:
    print(f"{default_input} is not a composite number.")

πŸ’» Testing the Program

To test the program with a different number, simply replace the value of default_input with your desired number.

Output
12 is a composite number.

Run the script to see whether the given number is a composite number.

🧠 How the Program Works

  1. The program defines a function is_composite that takes a number as input and checks if it is a composite number.
  2. Inside the function, it iterates through numbers from 2 to the given number to check if any of them is a divisor.
  3. If a divisor is found, the number is composite; otherwise, it is not.
  4. The default input value is set to 12, and the program prints whether it is a composite number or not.

πŸ“ Between the Given Range

Let's dive into the Python code that checks for composite numbers in the specified range.

is_composite.py
Copied
Copy To Clipboard
# Function to check if a number is composite
def is_composite(num):
    if num > 1:
        for i in range(2, num):
            if (num % i) == 0:
                return True
        else:
            return False
    else:
        return False

# Driver program
def main():
    print("Composite numbers in the range 1 to 10:")
    for number in range(1, 11):
        if is_composite(number):
            print(number)

if __name__ == "__main__":
    main()

πŸ’» Testing the Program

Output
Composite numbers in the range 1 to 10 are: 
4 6 8 9 10

Run the script, and it will display the composite numbers in the range 1 to 10.

🧠 How the Program Works

  1. The program defines a function is_composite that takes a number as input and returns True if it is composite, and False otherwise.
  2. Inside the function, it iterates through numbers from 2 to the given number (exclusive) to check for divisors.
  3. The main function prints the composite numbers in the range 1 to 10 by calling the is_composite function.

🧐 Understanding the Concept of Composite Numbers

Composite numbers are integers greater than 1 that have divisors other than 1 and themselves.

For example, the number 12 is composite because it can be formed by multiplying 2 and 6 or 3 and 4.

🎒 Optimizing the Program

While the provided program is effective, consider exploring and implementing optimizations for larger numbers, such as checking divisors up to the square root of the number for improved efficiency.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
3 months ago

If you have any doubts regarding this article (Python Program to find Composite Number), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy