Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #Imports essential commands
  2. from random import *
  3.  
  4. #Infinite Loop
  5. while True:
  6.  
  7. #Random Integer Generator
  8. ans = randint(1,100)
  9.  
  10. #Guess preset
  11. guess = 10000
  12.  
  13. #Comparisons
  14. while guess != ans:
  15. guess = int(input("Guess a number form 1 to 100: "))
  16.  
  17. if guess > ans:
  18. print("LOWER")
  19.  
  20. if guess < ans:
  21. print("HIGHER")
  22.  
  23. #Win message
  24. print("WINNER")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement