-
Notifications
You must be signed in to change notification settings - Fork 0
/
FlorAmarilla.py
53 lines (50 loc) · 897 Bytes
/
FlorAmarilla.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from turtle import *
import colorsys
# Agregar el texto en la cabecera
header_text = ""
color("white") # Color del texto
penup()
goto(-180, 250) # Posición del texto
pendown()
write(header_text, align="left", font=("Arial", 12, "normal"))
speed(20)
bgcolor("black")
h = 0
# Dibujar el tallo verde del girasol
penup()
goto(0, -100)
pendown()
color("green")
begin_fill()
rt(90)
fd(400)
lt(90)
fd(20)
lt(90)
fd(400)
lt(90)
fd(20)
end_fill()
# Dibujar el girasol
penup()
goto(0, 0)
pendown()
for i in range(16):
for j in range(18):
color("yellow") # Todos los pétalos son amarillos
h += 0.005
rt(90)
circle(150 - j * 6, 90)
lt(90)
circle(150 - j * 6, 90)
rt(180)
circle(40, 24)
# Colorear el centro de marrón
penup()
goto(-20, 0)
pendown()
color("brown")
begin_fill()
circle(44) # Ajustar el radio del centro
end_fill()
done()