generated from mwc/lab_turtle
29 lines
399 B
Python
29 lines
399 B
Python
# drawing.py
|
|
# ----------
|
|
# By ______(you!)________
|
|
#
|
|
# This is a drawing of ???.
|
|
|
|
|
|
from turtle import *
|
|
|
|
pensize(10)
|
|
colormode(255)
|
|
color((0,123,167))
|
|
forward(400)
|
|
right(360 * 2 / 5)
|
|
color((34,139,34))
|
|
forward(400)
|
|
right(360 * 2 / 5)
|
|
color((150,222,209))
|
|
forward(400)
|
|
right(360 * 2 / 5)
|
|
color((227,66,52))
|
|
forward(400)
|
|
right(360 * 2 / 5)
|
|
color((255,0,255))
|
|
forward(400)
|
|
right(360 * 2 / 5)
|
|
|
|
input()
|