Back to Browse

Python Turtle - Code the Indonesian Flag Tutorial

4.8K views
Apr 20, 2020
2:58

Learn how to quickly draw the Indonesian 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) penup() goto(-400, 250) pendown() # Red rectangle color("red") begin_fill() forward(800) right(90) forward(250) right(90) forward(800) end_fill() hideturtle()

Download

1 formats

Video Formats

360pmp43.9 MB

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

Python Turtle - Code the Indonesian Flag Tutorial | NatokHD