Докуметация к этим командам:
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)
(25.00,0.00)
>>> forward(-75)
(-50.00,0.00)
т.е. forward и fd делают одно и то же. перемещает курсор на n координат перёд. пример есть в докуметации
Докуметация к этим командам:
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 координат перёд. пример есть в докуметации