Control Flow
Conditional Statements
if
NOTE
Indentation creates a block
A colon,
:
, is required at the beginning of a blockUse 4 spaces per indentation level (from the official style guide)
elif
else
Loops
while loop
for loop
range range(start, stop, step)
The range
function returns a sequence of numbers that starts from start
(0 by default) and stops before stop
, in increments of step
(1 by default).
break & continue You can stop a loop with break
or skip to the next iteration with continue
Last updated
Was this helpful?