Python Turtle - Code the Japanese Flag Tutorial

preview_player
Показать описание
Learn how to quickly draw the Japanese flag using Python's Turtle module.

~ CODE ~

from turtle import *

speed(0)
setup(800, 500)

# Move to start position
penup()
goto(0, -100)
pendown()

color("red")
begin_fill()
circle(120)
end_fill()

hideturtle()
Рекомендации по теме
Комментарии
Автор

Just found this, a real life saver TY!!!

nightlight
visit shbcf.ru