This commit is contained in:
Mert Gör 🇹🇷 2023-07-01 23:27:29 +03:00
parent 743ac3ce55
commit 8f865c3228
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

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

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