Created
August 19, 2021 09:04
-
-
Save Priler/e253b9fb26b11f507ddeeec921892f95 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
import turtle | |
colors = ['red', 'blue', 'purple', 'green', | |
'orange', 'yellow'] | |
t = turtle.Pen() | |
turtle.bgcolor('black') | |
t.hideturtle() | |
for x in range(360): | |
t.pencolor(colors[x%6]) | |
t.width(x/100 + 1) | |
t.forward(x) | |
t.left(59) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Офигенно