“Модуль черепахи Python” Ответ

Как импортировать черепаху в питоне

import turtle # imports it
whateverYouWantToCallIt = turtle.Turtle() # adds it to the project
#code
whateverYouWantToCallIt.forward(10) # moves whateverYouWantToCallIt forward
whateverYouWantToCallIt.color("purple") # color
whateverYouWantToCallIt.left(90) # turns him 90 degrees
whateverYouWantToCallIt.right(90) # turns him 90 degrees the other direction
Scared Creeper

Весело

# Draw something that i don't care about

import turtle as tu


sc =tu.Screen()
sc.bgcolor("black")

t = tu.Turtle()
t.speed(60)

t.pensize(3)

for i in range(100):
      t.circle(5 + 2 * i , 44)
      if t.pos()[1] >= t.pos()[0]:
            t.pencolor("yellow")
            t.dot(12)
      elif t.pos()[1] <= t.pos()[0]:
            t.pencolor("blue")
            t.dot(12)

t.hideturtle()
            
sc.exitonclick()



Nervous Nightingale

import turtle
win = turtle.Screen()
Elated Emu

>>> turtle.position()
(0.00,240.00)
>>> turtle.setx(10)
>>> turtle.position()
(10.00,240.00)
Outrageous Oryx

from turtle import *
color('red', 'yellow')
begin_fill()
while True:
    forward(200)
    left(170)
    if abs(pos()) < 1:
        break
end_fill()
done()
Eager Echidna

import turtle
#creating a square with turtle
t = turtle.Turtle()
t.forward(100)
t.color('blue')
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
Vivacious Vulture

Ответы похожие на “Модуль черепахи Python”

Вопросы похожие на “Модуль черепахи Python”

Больше похожих ответов на “Модуль черепахи Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования