dashboard
repositories
filestore
activity
search
login
python-kurs
/
mam-2025
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
greedy funktion
Hong-Phuc Bui
2025-06-30
478693d804680fa6c206ce47159c0740a6f32d51
[python-kurs/mam-2025.git]
/
geoturtle-inheritance
/
plotsquare.py
1
2
3
4
5
6
7
8
9
10
11
12
13
from geoturtle import GeoTurtle
anna = GeoTurtle()
anna.forward(100)
anna.left(30)
anna.square(50)
paul = GeoTurtle()
paul.back(100)
paul.right(30)
paul.square(50)
anna.screen.mainloop()