3 Program to check if a Number is positive, negative or zero in Python Atharva Satyendra Agrawal January 17, 2020 Atharva Satyendra Agrawal Program: num = int(input("Enter any Number:")) if num < 0: print("Number is Negative") elif num > 0: print("Number is Positive") else: print("Number is Zero") Output: Tweet Share Share Share Related Post