Read carefully through the questions and answer them
How many tiles will the character move using the following code? Assume that forward() moves the character forward one tile.
for i in range(1, 5):
forward()
Which line of code will execute the forward() command?
Which of the following pieces of code will make the character fire() 10 times?
Which of the following pieces of code will make the character fire() 10 times?
Which of the following is equivalent to the code be?

Blank 1 is:
Blank 2 is:
Blank 3 is:
Use loops to write the code that prints
left
right
left
right
left
right
up

Explain the code assuming that the first time the user enters June, then July then August. What will be printed in each of the cases?