Menu
Home
Study +
Study
Combat
HTMLessons
Javascipt
Web Design +
Online Editor
Python3
Turtle
HTML
Tutorials +
Tutorials
HTML/CSS
jQuery
Hello World
Contact
About
#Guess It
import random
hidden = random.randrange(1, 201)
# print hidden
guess = int(raw_input(
"Please enter your guess: "
))
if guess == hidden:
print
"Hit!":
elif guess hidden:
print
"Your guess is too low"
else:
print
"Your guess is too high"