Hong-Phuc Bui
2025-05-21 db76932935ad46e855f89fe00b914b234d5c250b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import turtle
 
fenster_breite = 800
fenster_hoehe = 800
 
screen = turtle.Screen()
 
screen.setup(fenster_breite, fenster_hoehe)
 
anna = turtle.Turtle()
 
b = 100
h = 100
 
pental = 5
winkel = 360/pental
 
for i in range(0,pental):
    anna.circle(b)
    anna.left(winkel)
 
turtle.done()