generated from mwc/lab_turtle
27 lines
345 B
Python
27 lines
345 B
Python
from turtle import (
|
|
forward,
|
|
back,
|
|
left,
|
|
right,
|
|
penup,
|
|
pendown,
|
|
color,
|
|
)
|
|
color('blue')
|
|
forward(300)
|
|
right(360 * 2 / 5)
|
|
color('red')
|
|
forward(300)
|
|
right(360 * 2 / 5)
|
|
color('orange')
|
|
forward(300)
|
|
right(360 * 2 / 5)
|
|
color('purple')
|
|
forward(300)
|
|
right(360 * 2 / 5)
|
|
color('black')
|
|
forward(300)
|
|
right(360 * 2 / 5)
|
|
|
|
input()
|