class type

This commit is contained in:
Mert Gör 🇹🇷 2023-06-25 16:50:36 +03:00
parent 6ed999ad1f
commit 2f23e77508
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

5
python-temel/class.1.py Normal file
View File

@ -0,0 +1,5 @@
class Sample:
def foo(self):
print('foo')
print(type(Sample))