Python Turtle - Code the Mauritania Flag Tutorial

Publié le: 01 janvier 1970
sur la chaîne: Geek Tutorials
2,036
25

Learn how to quickly draw the Mauritanian flag using Python's Turtle module. Dedicated to my good mate, Ely from Mauritania.

Get Mu - https://codewith.mu/

~ CODE ~

from turtle import *

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

Moon Shape
penup()
goto(0, -135)
pendown()
color("gold")
begin_fill()
circle(250)
end_fill()

penup()
goto(0, -65)
pendown()
color("seagreen")
begin_fill()
circle(300)
end_fill()

Star
penup()
goto(-65, 75)
pendown()
color("gold")
begin_fill()
for i in range(5):
forward(120)
right(144)
end_fill()

Top Rectangle
penup()
goto(-400, 250)
pendown()
color("firebrick")
begin_fill()
for i in range(2):
forward(800)
right(90)
forward(75)
right(90)
end_fill()

Bottom Rectangle
penup()
goto(-400, -250)
pendown()
begin_fill()
for i in range(2):
forward(800)
left(90)
forward(75)
left(90)
end_fill()

hideturtle()


Sur cette page du site, vous pouvez voir la vidéo en ligne Python Turtle - Code the Mauritania Flag Tutorial durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Geek Tutorials 01 janvier 1970, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 2,036 fois et il a aimé 25 téléspectateurs. Bon visionnage!