17 lines
333 B
Python
17 lines
333 B
Python
import turtle as tt
|
|
|
|
def turtle_08():
|
|
"""Create the pattern on image \"./imgs/pattern_067.png\""""
|
|
tt.bgcolor("black")
|
|
tt.color("magenta")
|
|
tt.pensize(2)
|
|
tt.speed(4)
|
|
|
|
for _ in range(10):
|
|
tt.right(36)
|
|
for _ in range(8):
|
|
tt.forward(100)
|
|
tt.right(45)
|
|
|
|
tt.exitonclick()
|