Skip to content

Instantly share code, notes, and snippets.

@jppg
Created June 18, 2021 22:44
Show Gist options
  • Save jppg/cf6ee860a57d9251e15dfa587eb14a07 to your computer and use it in GitHub Desktop.
Save jppg/cf6ee860a57d9251e15dfa587eb14a07 to your computer and use it in GitHub Desktop.
import turtle
left_pad = turtle.Pen()
left_pad.penup()
left_pad.setx(-200)
left_pad.shape("square")
left_pad.shapesize(stretch_wid=3, stretch_len=2, outline=None)
circle = turtle.Pen()
circle.home()
circle.shape("circle")
right_pad = turtle.Pen()
right_pad.penup()
right_pad.setx(200)
right_pad.shape("square")
right_pad.shapesize(stretch_wid=3, stretch_len=2, outline=None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment