Python Turtle - Code a Cool Pattern Tutorial

Описание к видео Python Turtle - Code a Cool Pattern Tutorial

Learn how to draw a cool pattern using octagons in Python's Turtle module.

~ CODE ~
from turtle import *

speed(0)
bgcolor("black")
color("greenyellow")
pensize(5)

for i in range(8):
left(45)
for i in range(8):
forward(100)
right(45)

hideturtle()

Комментарии

Информация по комментариям в разработке