Skip to content

Instantly share code, notes, and snippets.

View nedoxff's full-sized avatar
:shipit:

nedo nedoxff

:shipit:
  • 23:11 (UTC +03:00)
View GitHub Profile
from turtle import *
pensize(5)
# меняет ширину обводки (в пикселях)
color('orange', 'red')
# меняет цвет обводки на оранжевый
# и цвет заливки на красный
begin_fill() # начинает заливку фигур
from turtle import *
# draws a yellow star
def star(size):
pd()
color('yellow', 'yellow')
begin_fill()
for i in range(5):
forward(size)
right(144)