Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 27, 2020 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/6c2c26223ea4e4d6c4dd670d17646600 to your computer and use it in GitHub Desktop.
Save computer-tutor/6c2c26223ea4e4d6c4dd670d17646600 to your computer and use it in GitHub Desktop.
x=int(input("Enter any number:"))
if x<0:
print('Negative')
elif x==0:
print('Zero')
else:
print('Positive')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment