85.4k views
2 votes
read the following code: for count in range(80) leo.forward(count * 2) leo.left(count 2) there is an error in the for loop. what should be fixed?

User Sdesvergez
by
7.3k points

1 Answer

5 votes

Answer:

There is a syntax error in the third line of the for loop where it says "leo.left(count 2)". It should be "leo.left(count*2)" instead. The correct code would be:

for count in range(80):

leo.forward(count * 2)

leo.left(count * 2)

Step-by-step explanation:

In the original code the count variable is being multiplied by 2 and then passed as an argument to the leo.left() function, but the multiplication symbol was missing and it's being interpreted as an attempt to call a function named "count" with an argument of 2.

User Mory
by
7.8k points