08.turtle

import turtle
python_turtle = turtle.Turtle()
def turtle1():
    python_turtle.forward(100)
    python_turtle.right(90)
    python_turtle.forward(100)
    python_turtle.right(90)
    python_turtle.forward(100)
    python_turtle.right(90)
    python_turtle.forward(100)
turtle1()
python_turtle.forward(100)
turtle1()
turtle.Screen().exitonclick()