I beleive anything to do with manage
Is there a picture you can attach because some computers are different
Answer:
from random import randint
num = randint(1,10)
count =0
while count<3:
userNum = int(input("Guess a Number "))
if num ==userNum:
print("You won")
break
else:
print("Wrong try again")
count = count+1
Explanation:
Import randint from random
generate a random number between (1,10) and assign to num
create a loop control variable count set to 0
In a While statement with the condition count<3 prompt user to make a guess
if guess is correct print you won and break
else print wrong try again and increase count by 1
Answer:
B- App Directory
Explanation:
The best place to search for free (and paid) software for customizing your Hootsuite dashboard to your exact business need is APP DIRECTORY.
An application directory is a group of software code, help files and resources that together comprise a complete software package but are presented to the user as a single object which enable a person to search for free software in other to customize the Hootsuite dashboard to the person business need.