In [ ]:
# condition

In [1]:
print 5 > 2
print 2 > 5


True
False

In [2]:
print type(True)
print type(False)


<type 'bool'>
<type 'bool'>

In [3]:
if 5 > 2:
    print "5 is greater than 2"


5 is greater than 2

In [4]:
if 2 > 5:
    print "2 is greater than 5"

In [5]:
if 2 > 5:
    print "2 is greater than 5"
else:
    print "2 is lesser than 5"


2 is lesser than 5

In [ ]:
# https://www.python.org/dev/peps/pep-0008/#code-lay-out
# https://www.youtube.com/watch?v=wf-BqAjZb8M
# pep-8
# https://docs.python.org/3/library/argparse.html
# https://github.com/sambapython/python/blob/master/assignments.txt