Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

Python Program to check Natural Number

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

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, understanding and validating numbers is a fundamental task. One common classification is that of natural numbers.

A natural number is a positive integer greater than zero.

In this tutorial, we'll explore a simple Python program that checks whether a given number is a natural number.

πŸ“„ Example

Let's delve into the Python code that accomplishes this functionality.

is_natural_number.py
Copied
Copy To Clipboard
# Function to check if a number is a natural number
def is_natural_number(num):
    return True if num > 0 else False

# Driver program
if __name__ == "__main__":
    # Replace this value with your desired number
    number = 42

    # Check if the number is a natural number
    if is_natural_number(number):
        print(f"{number} is a natural number.")
    else:
        print(f"{number} is not a natural number.")

πŸ’» Testing the Program

To test the program with different numbers, replace the value of number in the if __name__ == "__main__": block.

Output
42 is a natural number.

Run the script to see if the given number is a natural number.

🧠 How the Program Works

  1. The program defines a function is_natural_number that takes a number as input and returns True if it's a natural number (greater than 0) and False otherwise.
  2. In the if __name__ == "__main__": block, replace the value of number with the desired number.
  3. The program then checks if the number is a natural number using the is_natural_number function.
  4. It prints whether the number is a natural number or not based on the result.

πŸ€” Considerations

  • The program assumes the input number is an integer.
  • For user input scenarios, additional validation may be required to handle non-integer inputs.

πŸ“ Between the Given Range

Let's dive into the python code that checks and displays natural numbers in the range from 1 to 10.

check_natural_numbers.py
Copied
Copy To Clipboard
# Function to check and display natural numbers in the range 1 to 10
def check_natural_numbers():
    start_range = 1
    end_range = 10

    # Displaying the header
    print(f"Natural Numbers in the Range {start_range} to {end_range}:")

    # Loop through the range and check for natural numbers
    for num in range(start_range, end_range + 1):
        print(num, end=" ")

# Call the function to check and display natural numbers
check_natural_numbers()

πŸ’» Testing the Program

Output
Natural Numbers in the range 1 to 10:
1 2 3 4 5 6 7 8 9 10 

Run the script to see the natural numbers in the range from 1 to 10.

🧠 How the Program Works

  1. The program defines a function check_natural_numbers that sets the range from 1 to 10 (inclusive).
  2. Inside the function, it uses a for loop to iterate through each number in the specified range.
  3. For each iteration, it prints the natural numbers.

🧐 Understanding the Concept of Natural Numbers

Natural numbers are a set of positive integers that start from 1 and continue indefinitely. They are often used for counting and ordering.

In this program, we check whether a given number is a natural number by verifying if it is greater than zero.

πŸŽ‰ Conclusion

This python program serves as a foundational example for checking whether a number is a natural number or not. Understanding the characteristics of natural numbers and incorporating such checks can be essential in various programming scenarios

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
6 months ago

If you have any doubts regarding this article (Python Program to check Natural 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