Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. def not_blank(question):
  2.  
  3. valid = False
  4. while not valid:
  5. response = input(question)
  6.  
  7. if response == "":
  8. continue
  9. else:
  10. return response
  11.  
  12.  
  13. # Main Routine goes here
  14.  
  15. recipe_name = not_blank("What is the recipe name? ")
  16.  
  17. print("You are making {} ".format(recipe_name))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement