This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from turtle import * | |
pensize(5) | |
# меняет ширину обводки (в пикселях) | |
color('orange', 'red') | |
# меняет цвет обводки на оранжевый | |
# и цвет заливки на красный | |
begin_fill() # начинает заливку фигур |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |