dashboard
repositories
filestore
activity
search
login
python-kurs
/
mam-2025
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
stundenplan
Hong-Phuc Bui
2025-06-24
e5c3b094424194754630d1b08db9f3e668c0fd8b
[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)