Number Guessing import random #bring in the random number import time number=random.randint(1, 200) #pick the number between 1 and 200 def intro(): print("May I ask you for your name?") name=input() #asks for the name print(name + ", we are going to play a game. I am thinking of a number between 1 and 200") time.sleep(.5) print("Go ahead. Guess!") def pick(): guessesTaken = 0 while guessesTaken < 6: #if the number of guesses is less than 6 time.sleep(.25) enter=input("Guess: ") #inserts the place to enter guess try: #check if a number was entered guess = int(enter) #stores the guess as an integer in...