Python Program to Check if a Number is Positive or Negative

In Python, checking whether a number is positive, negative, or zero is a basic but essential operation. You’ll frequently encounter this task when dealing with input validation or mathematical computations. In this blog post, we’ll walk through how to write a Python program that checks if a number is positive, negative, or zero using simple conditional statements.


What Does It Mean for a Number to Be Positive, Negative, or Zero?

  • Positive Number: A number greater than zero (e.g., 1, 2, 10, 100).
  • Negative Number: A number less than zero (e.g., -1, -5, -20).
  • Zero: A number that is neither positive nor negative. Zero is a special number that holds its own category.

Steps to Write the Program

  1. Input the Number: The program will take an integer or floating-point number as input from the user.
  2. Use Conditional Statements: We’ll use Python’s if, elif, and else statements to check the condition and determine whether the number is positive, negative, or zero.
  3. Display the Result: Finally, we’ll print the result to let the user know the classification of the number.

Python Program to Check if a Number is Positive or Negative

# Program to check if a number is positive, negative or zero

# Input: Asking the user to enter a number
number = float(input("Enter a number: "))

# Check if the number is positive, negative, or zero
if number > 0:
    print("The number is positive.")
elif number < 0:
    print("The number is negative.")
else:
    print("The number is zero.")

Explanation:

  1. Input: We use float(input()) to allow the program to accept decimal values in addition to integers.
  2. Conditional Check:
  • If the number is greater than zero, it is classified as positive.
  • If the number is less than zero, it is classified as negative.
  • If the number is exactly zero, it falls under the special case of zero.
  1. Output: The result is printed based on the condition that is met.

Sample Output

Let’s run the program and test it with different inputs.

Test Case 1: Positive Number

Enter a number: 7
The number is positive.

Test Case 2: Negative Number

Enter a number: -3.5
The number is negative.

Test Case 3: Zero

Enter a number: 0
The number is zero.

Understanding the Flow of the Program

  1. The program takes input from the user.
  2. The if statement checks if the number is greater than zero. If true, it prints “The number is positive.”
  3. If the if condition is false, it moves to the elif statement to check if the number is less than zero. If true, it prints “The number is negative.”
  4. If neither the if nor the elif condition is true, it reaches the else block, which handles the case where the number is zero.

Edge Cases to Consider

  1. Zero: Zero is a special case and needs to be handled separately.
  2. Floating-Point Numbers: The program works with both integers and floating-point numbers. Ensure that you use float() when accepting user input, especially if the number could be a decimal.
  3. Invalid Input: If the user inputs non-numeric data, the program will raise an error. You can handle such cases using exception handling (try-except block) if needed.

Modifying the Program to Include Exception Handling

If you’d like to make the program more robust and handle invalid inputs, you can modify it like this:

# Program to check if a number is positive, negative or zero with error handling

try:
    # Input: Asking the user to enter a number
    number = float(input("Enter a number: "))

    # Check if the number is positive, negative, or zero
    if number > 0:
        print("The number is positive.")
    elif number < 0:
        print("The number is negative.")
    else:
        print("The number is zero.")

except ValueError:
    print("Invalid input! Please enter a numeric value.")

Here, we use a try-except block to catch any ValueError that occurs when the user inputs non-numeric data. If an invalid input is detected, it will prompt the user with a friendly error message.


Conclusion

Checking if a number is positive, negative, or zero is a simple but important task in Python programming. It forms the basis of many other more complex operations, such as validating user input or performing calculations in mathematical applications. By mastering these basic conditional checks, you’re on your way to becoming proficient in Python.

Whether you’re working with integers or floating-point numbers, this basic program will help you easily determine the classification of any number. Try modifying the code further or adding additional features such as handling edge cases or invalid inputs.


Now that you know how to check if a number is positive, negative, or zero, keep practicing and enhancing your skills with other beginner-friendly Python programs!

Share with our team

Leave a Comment