Skip to content

Instantly share code, notes, and snippets.

@mhassanist
Last active December 7, 2022 15:24
Show Gist options
  • Save mhassanist/89e9fc03aaade19676b4dff7447ba954 to your computer and use it in GitHub Desktop.
Save mhassanist/89e9fc03aaade19676b4dff7447ba954 to your computer and use it in GitHub Desktop.
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment