Back to Browse

Python Turtle - Code the Austrian Flag Tutorial

2.4K views
Apr 6, 2020
2:57

Learn how to quickly draw the Austrian 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_medium=referral&utm_source=youtube&utm_campaign=geektutorials&utm_content=description-only ~ CODE ~ from turtle import * speed(0) setup(800, 500) bgcolor("red") penup() goto(-400, -80) pendown() color("white") begin_fill() forward(800) left(90) forward(167) left(90) forward(800) end_fill() hideturtle()

Download

1 formats

Video Formats

360pmp44.0 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

Python Turtle - Code the Austrian Flag Tutorial | NatokHD