python_by_example/trtl/turtle08.py

17 lines
333 B
Python
Raw Permalink Normal View History

2023-11-11 00:09:22 -03:00
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()