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()
На этой странице сайта вы можете посмотреть видео онлайн Python Turtle - Code a Square Tutorial длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Geek Tutorials 23 Февраль 2020, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 21,330 раз и оно понравилось 143 зрителям. Приятного просмотра!