Write a program to check if a Number is Positive, Negative or zero.

Q. Write a program  to check if a Number is Positive, Negative or zero.

Code:-

num = float(input("Enter a number:"))

if num > 0:
  print("Positive number")
elif num == 0:
  print("Zero")
else:
  print("Negative number")

 

Output:-




You can watch the YouTube video:-





 



Comments