-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathguess_my_ number_cw.py
39 lines (29 loc) · 1021 Bytes
/
guess_my_ number_cw.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Guess My Number
#
# The computer picks a random number between 1 and 100
# The player tries to guess it and the computer lets
# the player know if the guess is too high, too low
# or right on the money
import random
print("\tWelcome to 'Guess My Number'!")
print("\nI'm thinking of a number between 1 and 100.")
print("Try to guess it in as few attempts as possible.\n")
# set the initial values
thenumber = random.randint(1, 5)
guess = int(input("Take a guess: "))
tries = 1
# guessing loop
while guess != thenumber:
if guess > thenumber:
print("Lower...")
else:
print("Higher...")
guess = int(input("Take a guess: "))
tries += 1
if tries >= 5:
print("YOU SUCK, cant even guess it within 5 tries :(")
break
if guess == thenumber:
print("You guessed it! The number was", thenumber)
print("And it only took you", tries, "tries!\n")
input("\n\nPress the enter key to exit.")