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