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:
Answer:
who are interested and I have been trying to
If you want a user to actively participate in an online activity, create a web ______________.
1. animation
2. application
<u>3. page </u>
4. source
Answer:
It's simply a software that runs a computer's basic tasks, or functions, such as scheduling, running applications, and controlling peripherals.