Last active
December 7, 2022 15:24
-
-
Save mhassanist/89e9fc03aaade19676b4dff7447ba954 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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