Control Flow
Last updated
Was this helpful?
Last updated
Was this helpful?
if
NOTE
Indentation creates a block
A colon, :
, is required at the beginning of a block
Use 4 spaces per indentation level (from the )
elif
else
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