dashboard
repositories
filestore
activity
search
login
python-kurs
/
mam-2025
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Vorlesung 10.6
Hong-Phuc Bui
10 days ago
fd66402c90a63cf8ce455c3614b9160884f74c61
[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()