Answer:
Mark me a brainless plss i need that i am blink plss
Answer:
<u>BEST</u>
Option 4
<u>WORST</u>
2
Explanation:
Option 4 is the best cus confronting is better than just watching and letting it happen which in option 2 that's the case
Answer:
import random
print("Hello! I have a random number from 1 to 100! It is your job to try and guess it!")
number = random.randint(1,101)
guess = int(input("start to guess: "))
num_guesses = 1
while guess != number:
if guess > number:
print("lower")
guess = int(input("try again: "))
num_guesses +=1
elif guess < number:
print ("higher")
guess = int(input("start to guess: "))
num_guesses +=1
print("congrats it took you", num_guesses, "tries")
Explanation: