Advertisement
Guest User

new

a guest
Sep 15th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. x = int(input('Guess Any No: '))
  2. if x >= 1000:
  3.     print('You are very very unlucky try again next time')
  4. elif 68 < x < 100:
  5.     print('You are still very unlucky try again next time')
  6. elif 57 < x < 67:
  7.     print('Unlucky you')
  8. elif 36 < x < 56:
  9.     print('Congrats you are a WINNER')
  10. else:
  11.     print('This number you choose can never make you win')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement