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
2025-06-11
fd66402c90a63cf8ce455c3614b9160884f74c61
[python-kurs/mam-2025.git]
/
geoturtle-inheritance
/
geoturtle.py
1
2
3
4
5
6
7
8
from turtle import Turtle
class GeoTurtle(Turtle):
def square(self, size:float):
for _ in range(4):
self.forward(size)
self.left(90)