Esempio n. 1
0
def main():
    window = Turtle.Screen()
    leonardo = Turtle.turtle()

    make_square(leonardo)

    Turtle.mainloop()
Esempio n. 2
0
# DRAW A SPIROGRAPH

from turtle import Turtle, Screen
import random
timmy = Turtle()

# turtle.home()
# timmy.position()(0.00,0.00)
# turtle.heading()
for n in range(0, 361, 10):
    r = random.randint(0, 255)
    g = random.randint(0, 255)
    b = random.randint(0, 255)
    color = (r, g, b)
    # return color
    timmy.circle(100)
    timmy.left(n)
    timmy.circle(100)

timmy.speed('fastest')

screen = Turtle.Screen()
screen.exitonclick()
Esempio n. 3
0
from turtle import Screen, Turtle
screen = Screen()
turtle = Turtle()
turtle.forward(100)
screen.mainloop()  # allows us to use the turtles library
#my_turtle = turtle.Turtle()
wn = turtle.Screen()  # creates a graphics window
wn.setup(400, 400)  # set window dimension

circle_rad = 50  # set the radius
rectangle_width = 150  # set the width
rectangle_height = 80  # set the height

alex = turtle.Turtle()  # create a turtle named alex
alex.shape("turtle")  # alex looks like a turtle
alex.color('red')  # alex has a color
alex.circle(circle_rad)
alex.backward(rectangle_width / 2)
alex.forward(rectangle_width)
alex.right(90)
alex.forward(rectangle_height)
alex.right(90)
alex.forward(rectangle_width)
alex.right(90)
alex.forward(rectangle_height)