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!')