Here is a simple Python program that can be used to check if a number is positive, negative, or zero:

				
					# This program checks if a number is positive, negative, or zero

# Take input from the user
number = int(input("Enter a number: "))

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

				
			
				
					F = C * (9/5) + 32

				
			

To use this program, simply enter a number when prompted and the program will tell you if the number is positive, negative, or zero. For example, if you enter the number 5, the program will print “5 is positive”.


Thanks for reading. Happy coding!