Skip to content

Instantly share code, notes, and snippets.

@CodeMaster7000
Created December 19, 2021 21:32
Show Gist options
  • Save CodeMaster7000/7934486880837d0e9bb3e84e1efdb92f to your computer and use it in GitHub Desktop.
Save CodeMaster7000/7934486880837d0e9bb3e84e1efdb92f to your computer and use it in GitHub Desktop.
An impressive turtle star with just a few lines of code.
from turtle import *
speed=0
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
hideturtle()
done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment