move python file to assignments

This commit is contained in:
Bastian 2020-01-16 11:13:36 +01:00
parent 075c3aa044
commit 8ab7d1fde4
1 changed files with 14 additions and 0 deletions

14
assignments/icecream.py Normal file
View File

@ -0,0 +1,14 @@
def ask_yes_no(prompt):
while True:
answer = input(prompt + ' (y or n) ')
if answer == 'y' or answer == 'Y':
return True # returning ends the function
if answer == 'n' or answer == 'N':
return False
print("Answer 'y' or 'n'.")
if ask_yes_no("Do you like ice cream?"):
print("You like ice cream!")
else:
print("You don't like ice cream.")