Last active
September 5, 2023 13:25
-
-
Save mauro-balades/a977d2a2fce42734862f57fd45841bc4 to your computer and use it in GitHub Desktop.
Nice python turtle shape
This file contains 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 as sneaky_turtle | |
sneaky_turtle.speed(0) | |
i = 120/2 | |
while True: | |
for i in range(6): | |
sneaky_turtle.forward(100) | |
sneaky_turtle.left(360/6) | |
sneaky_turtle.left(i/2) | |
i *= 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
change
.left
to any value you want for the shape depth!https://trinket.io/python/8ac438b56c