atharvaagrawal / Python-Challenges

This is Python Practice repository for Python Challenges Solver
1 stars 0 forks source link

004-PROGRAM TO CHECK-IF-A-NUMBER-IS-POSITIVE-NEGATIVE-OR-ZERO-IN-PYTHON #4

Open atharvaagrawal opened 4 years ago

atharvaagrawal commented 4 years ago

Input:

Enter any Number: 0

Output:

Number is Zero

ghost commented 4 years ago

number = int (input ("Please Enter Any Number: "))

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