Skip to content

Instantly share code, notes, and snippets.

@real-nickel
Created September 29, 2019 12:01
Show Gist options
  • Save real-nickel/282ed0928771fe92bee681c8b5e6945f to your computer and use it in GitHub Desktop.
Save real-nickel/282ed0928771fe92bee681c8b5e6945f to your computer and use it in GitHub Desktop.
Python Turtle tutorial 1: Square
import turtle
t = turtle.Pen()
t.forward(90)
t.left(90)
t.forward(90)
t.left(90)
t.forward(90)
t.left(90)
t.forward(90)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment