Skip to content

Instantly share code, notes, and snippets.

@ks--ks
Created July 10, 2020 22:07
Show Gist options
  • Save ks--ks/109dde4e0dad33781d50f3fca488aa0a to your computer and use it in GitHub Desktop.
Save ks--ks/109dde4e0dad33781d50f3fca488aa0a to your computer and use it in GitHub Desktop.
""" Assign 200 to x.
If x > 200, print out "Big";
If x > 100 and x <= 200, print out "Average";
and If x <= 100, print out "Small"""
x = 200
if x > 200:
print ("Big")
elif x > 100 and x <= 200:
print ("Average")
elif x >= 0 and x <= 100:
print ("Small")
else:
print ("Negative")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment