Answers for "what does the turtle by function in python"

10

how to import turtle in 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
Posted by: Guest on March-13-2020
1

how to import turtle in Python

import turtle
win = turtle.Screen()
Posted by: Guest on October-29-2020
0

Fun & learn with python turtle

# 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()
Posted by: Guest on December-02-2021

Code answers related to "what does the turtle by function in python"

Python Answers by Framework

Browse Popular Code Answers by Language