Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import turtle
- def main():
- screen = turtle.Screen()
- screen.bgcolor("black")
- t = turtle.Turtle()
- t.speed("slow")
- t.pensize(10)
- t.color("white")
- t.forward(100)
- t.right(135)
- t.forward(20)
- t.color("blue")
- t.forward(100)
- t.color("red")
- t.forward(20)
- t.left(135)
- t.forward(100)
- turtle.done()
- if __name__ == "__main__":
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement