1# updated version
2import random
3# for instructions so that the user understands
4def instructions():
5 print("Welcome to the guessing game you will have 3 tries to pick a number 1-10")
6 print("Good luck btw it's all random")
7
8
9instructions()
10# guess limit so the user can't guess too much.
11guess_limit = 1
12# The random guess
13number = random.randint(1, 10)
14# What users can type and see.
15user = int(input("What is the number?: "))
16# The while loop so it can go on.
17while user != number:
18
19 if user > number:
20 print("Lower")
21
22 elif user < number:
23 print("Higher")
24
25 user = int(input("What is the number?: "))
26 guess_limit += 1
27 if guess_limit == 3:
28 print("------------------------------------------------------")
29 print("You ran out of guess ;( the answer was", number, "<--")
30 print("------------------------------------------------------")
31 break
32else:
33 print("You guessed it right! The number is", number,
34 "and it only took you ", guess_limit, "tries")
1# importing random library
2# this game untill work untill u get right answer
3import random
4a = 1
5rand = random.randint(1, 100)
6while 1 <= a:
7 a += 1
8 winin = int(input("enter a number under 100 : "))
9 if winin > 100:
10 print("not valid")
11 break
12 else:
13 if winin < rand:
14 print("too low")
15 elif winin > rand:
16 print("too high")
17 if winin == rand:
18 print(f"you got the right answer in {a - 1} times")
19 break
20