Python Turtle - Code the Danish Flag Tutorial

Опубликовано: 07 Апрель 2020
на канале: Geek Tutorials
2,374
21

Learn how to quickly draw Denmark's flag using Python's Turtle module.

⭐ Kite is a free AI-powered coding assistant that will help you code faster and smarter. The Kite plugin integrates with all the top editors and IDEs to give you smart completions and documentation while you’re typing. I've been using Kite for 6 months and I love it! https://www.kite.com/get-kite/?utm_me...

~ CODE ~

from turtle import *

speed(0)
setup(800, 500)
bgcolor("firebrick")

penup()
goto(-400, -37)
pendown()

White Cross
color("white")
begin_fill()
forward(800)
left(90)
forward(75)
left(90)
forward(800)
end_fill()

penup()
goto(-100, -250)
pendown()

begin_fill()
forward(75)
right(90)
forward(500)
right(90)
forward(75)
end_fill()

hideturtle()


На этой странице сайта вы можете посмотреть видео онлайн Python Turtle - Code the Danish Flag Tutorial длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Geek Tutorials 07 Апрель 2020, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 2,374 раз и оно понравилось 21 зрителям. Приятного просмотра!