This commit is contained in:
Mert Gör 🇹🇷 2023-07-01 23:25:05 +03:00
parent 30f63c56dc
commit 743ac3ce55
No known key found for this signature in database
GPG key ID: 2100A876D55B39B9

10
python-temel/mro.py Normal file
View file

@ -0,0 +1,10 @@
class A:
pass
class B(A):
pass
class C(B):
pass
print(C.__mro__)