Check whether number positive or negative in Python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code num=int(input(“Enter the number : “))if num>0: print(“Positive number”)else: print(“Negative Number”) Output Enter the number : -78Negative Number View All Python Programs