Captain America Shield draw using Python Turtle

preview_player
Показать описание
How to draw Captain America shield with Python Turtle graphics.
#shorts #python #marvel #captainamerica
Рекомендации по теме
Комментарии
Автор

from turtle import *

setup(600, 800)
bgcolor('#DEDEDE')
speed(10)

up()
setpos(0, -250)
down()
color('#8B0000')
fillcolor('white')
width(50)
begin_fill()
circle(250)
end_fill()

up()
setpos(0, -150)
down()
fillcolor('#00008B')
begin_fill()
circle(150)
end_fill()


width(1)
up()
setpos(-117, 38)
color('white')
begin_fill()
down()
for i in range(5):
forward(235)
right(144)
end_fill()
hideturtle()
done()

Python