forked from gever/bwx-adventure
-
Notifications
You must be signed in to change notification settings - Fork 1
Handy Dandy Quick Reference Guide to Conditionals
sleepinghungry edited this page Feb 28, 2017
·
4 revisions
if something > something_else:
Example:
if price > 45000:
if something < something_else:
Example:
if price < 45000:
if something == something_else:
Example:
if price == 45000:
if first_number < something < second_number:
Example:
if 0 > price > 45000:
if something >= something_else:
Example:
if price >= 45000:
if something <= something_else:
Example:
if price <= 45000: