Ответы
Ответ дал:
1
Докуметация к этим командам:
forward(distance)
Move the turtle forward by the specified distance.
Aliases: forward | fd
Argument:
distance -- a number (integer or float)
Move the turtle forward by the specified distance, in the direction
the turtle is headed.
Example:
>>> position()
(0.00, 0.00)
>>> forward(25)
>>> position()
(25.00,0.00)
>>> forward(-75)
>>> position()
(-50.00,0.00)
т.е. forward и fd делают одно и то же. перемещает курсор на n координат перёд. пример есть в докуметации
Вас заинтересует
1 год назад
2 года назад
2 года назад
7 лет назад
9 лет назад