summaryrefslogtreecommitdiff
path: root/misc/flow_control.py
blob: df3e63ea63ae905f4ad447ec3f447ab2031efadf (plain)
1
2
3
4
5
6
7
8
9
10
11
# flow control

# Practice question 9

spam = 2
if spam == 1:
    print('Hello')
elif spam == 2:
    print('Howdy')
else:
    print('Greetings!')