Learn how to quickly draw 3 different squares 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)
bgcolor("black")
Outlined Square
penup()
goto(-350, 100)
pendown()
pensize(5)
color("magenta")
for i in range(4):
forward(150)
left(90)
Multi-Coloured Square (Stroke only)
penup()
goto(-175, 100)
pendown()
for i in ["yellow", "red", "blue", "purple"]:
color(i)
forward(150)
left(90)
Square with Fill and Stroke
penup()
goto(0, 100)
color("orange", "yellow")
pendown()
begin_fill()
for i in range(4):
forward(150)
left(90)
end_fill()
hideturtle()
exitonclick()
In questa pagina del sito puoi guardare il video online Python Turtle - Code a Square Tutorial della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Geek Tutorials 23 febbraio 2020, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 21,330 volte e gli è piaciuto 143 spettatori. Buona visione!