Skip to content

Instantly share code, notes, and snippets.

@widelec-BB
Created October 13, 2020 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save widelec-BB/944bd8b6ad0b9ed9f6736c56ff5913b3 to your computer and use it in GitHub Desktop.
Save widelec-BB/944bd8b6ad0b9ed9f6736c56ff5913b3 to your computer and use it in GitHub Desktop.
from turtle import *
shape('turtle')
color('black', 'red')
begin_fill()
forward(300)
while abs(pos()) >= 1:
left(130)
forward(300)
end_fill()
done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment