Skip to content

Instantly share code, notes, and snippets.

@VladaHejda
Last active November 8, 2018 18:16
Show Gist options
  • Save VladaHejda/7ce4197d925bfeefdc2a94d268d43065 to your computer and use it in GitHub Desktop.
Save VladaHejda/7ce4197d925bfeefdc2a94d268d43065 to your computer and use it in GitHub Desktop.
turtle.py
from turtle import forward, left, right, exitonclick
for i in range(6):
for j in range(7):
forward(40)
left(60)
right(120)
exitonclick()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment