Complete the code.

You are writing a loop to allow the user to enter data until they enter a "Q". You want to allow them to enter an upper- or lowercase "Q".

if yourTeam.
() == "q":
break

Respuesta :

Answer:

# Set an initial condition.

game_active = True

# Set up the while loop.

while game_active:

   # Run the game.

   # At some point, the game ends and game_active will be set to False.

   #   When that happens, the loop will stop executing.

   

# Do anything else you want done after the loop runs.

Explanation:

Answer:

Lower

Explanation: