9.py 1 2 3 4 5 6 7 8num = float(input("Enter A Number : ")) if num > 0: print("Positive") elif num < 0: print("Negative") else: print("Zero")