Page 101 - Programming With Python 3
P. 101
An Introduction to STEM Programming with Python — 2019-09-03a Page 88
Chapter 7 — In, If, Random, and While
if condition:
suite
Free
else:
suite Statement
The if statement followed by the else statement will execute the first suite of
code if the condition expression is true and the second suite of code if the
expression is false.
eBook
https://docs.python.org/3/reference/compound_stmts.html#the-if-statement
http://bit.ly/2AzPg4F
Edition
Please support this work at
http://syw2l.org
Free
Illustration 15: Flowchart of If Else
1| import random
2| toss = random.random()
3| if toss < .10:
4| print("really small") eBook
5| if toss < .05:
6| print("actually really really small")
7| else:
Edition
8| print("bigger than really small")
9| print("it was", toss)
Copyright 2019 — James M. Reneau Ph.D. — http://www.syw2l.org — This work is licensed
under a Creative Commons Attribution-ShareAlike 4.0 International License.

