Objective
Develop a Python program that prompts the user to input a number and then determines if the number is positive or negative.
Example Python Exercise
Show Python Code
# Prompt the user to enter a number
num = float(input("Please enter a number: "))
# Determine if the number is positive or negative and display the result
if num > 0:
print(f"The number {num} is positive.")
elif num < 0:
print(f"The number {num} is negative.")
else:
print("The number is zero.")
Output
Please enter a number: -5
The number -5.0 is negative.
Share this Python Exercise