Guest User

Untitled

a guest
Jan 16th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. name = ''
  2. while not name:
  3. name = input()
  4. print('How many guests will you have?')
  5. numOfGuests = int(input())
  6. if numOfGuests:
  7. print('Be sure to have enough room for all your guests.')
  8. print('Done')
  9.  
  10.  
  11. name = ''
  12. while not name:
  13. name = input()
  14. print('How many guests will you have?')
  15. numOfGuests = int(input())
  16. if numOfGuests:
  17. print('Be sure to have enough room for all your guests.')
  18. pritnt('Done')
  19.  
  20.  
  21. It's in this book. These two kinds of writing are all wrong. What should I do?
Add Comment
Please, Sign In to add comment