If Elif Else Statements
If Elif Else Statements
If...elif…else statements
Look at this code:
Challenge 1
As the user to enter their name and then ask them to enter a number. If the
number is under 5 display “Hello [name]”. If the number is over 5 display “Hi
[name]” otherwise display “Howdy [name]”.
Challenge 2
Ask the user for their age. If they are 18 or older, tell them “You can vote”. If
they are 17, tell them “You can learn to drive”. If they are 16, tell them “You
can buy a lottery ticket” and for everybody else display the message
“Nobody looks at you strangely if you do a cartwheel in public”.
Challenge 2
Create a python program for this flow diagram: