下面Python代码执行后将绘制从左到右逐步升高的台阶。( )
import turtle
for i in range(10):
turtle.forward(20)
turtle.left(90)
turtle.forward(10)
turtle.right(90)