Open main menu

CDOT Wiki β

Changes

OPS435 Python Lab 2

8 bytes added, 07:54, 26 May 2017
PART 1 - Using IF Statements
== PART 1 - Using IF Statements ==
Indentation means to start a line with spaces or tabs before your text. In Python, indentation can control how the program itself runs. From now on be very careful and consistent in the indetation that you make. Using indentation you can choose what code runs as part of the if statement and what code runs as part of the main program.
'''Understanding If Statements '''
if True:
print('This print is apart of the if statement')
</source>Indentation means to start a line with spaces or tabs before your text. In Python, indentation can control how the program itself runs. From now on be very careful and consistent in the indetation that you make. Using indentation you can choose what code runs as part of the if statement and what code runs as part of the main program.<br><br>:#When a if statement is True, it runs the code that is indented underneith underneath it. However if the statement is False it will not run. Any code not indented under the if statement will perform normally.<source>
if False:
print('This first print statement will never run')
13,420
edits