以下 Python 代码执行后画出图形是( )
import turtle
n = 0
while n<4:
turtle.forward(10)
turtle.left(90)
n+=1
一个边长为 10 的正方形
一个边长为 4 的正方形
一条长为 40 的直线
报错