Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. print('What number would you like to bet on? CHOICES: 4 5 6 8 9 10')
  2. t = int(input())
  3. if(t == (4 or 5 or 6 or 7 or 8 or 9 or 10)):
  4. print('Stuff happens or else')
  5. else:
  6. print('Invalid Entry')
  7.  
  8. What type of bet, You can type: Pass, DontPass, Place, Field, Hop, Hard
  9. place
  10. What number would you like to bet on? CHOICES: 4 5 6 8 9 10
  11. 5
  12. Invalid Entry
  13. Not a Valid response
  14. What type of bet, You can type: Pass, DontPass, Place, Field, Hop, Hard
  15.  
  16. if(t == (4 or 5 or 6 or 7 or 8 or 9 or 10)):
  17.  
  18. if(t in range(4, 11)):
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement