Ejemplo 1: color de relleno de tortuga
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
Ejemplo 2: como rellenar una forma con color en una tortuga pitón
fillcolor(): This helps to choose the color for filling the shape. It takes the input parameter as the color name or hex value of the color and fills the upcoming closed geographical objects with the chosen color. Color names are basic color names i.e. red, blue, green, orange.
The hex value of color is a string(starting with ‘#’) of hexadecimal numbers i.e. #RRGGBB. R, G, and B are the hexadecimal numbers (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F).
begin_fill(): This function tells turtle that all upcoming closed graphical objects needed to be filled by the chosen color.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)