148k views
4 votes
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 Fcastillo
by
7.3k points

1 Answer

2 votes

Answer:

the second parenthesis should probably be count*2. (not count 2)

User Imodin
by
8.0k points