Skip to content

Instantly share code, notes, and snippets.

@NotoriousArnav
Created August 17, 2022 16:50
Show Gist options
  • Save NotoriousArnav/eac17ba7535637946655573fac780413 to your computer and use it in GitHub Desktop.
Save NotoriousArnav/eac17ba7535637946655573fac780413 to your computer and use it in GitHub Desktop.
test
user_float = float(input("enter any number: "))
if user_float==0:
print("Zero")
elif user_float>0:
print("+ve")
else:
print("-ve")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment