Чим відрізняються команди turtle.forward(100) та turtle.fd(100)?

kignkfleh kignkfleh    1   25.02.2021 21:18    0

Ответы
Гульнара1709 Гульнара1709  27.03.2021 21:22

Докуметация к этим командам:

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 координат перёд. пример есть  в докуметации

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика