This commit is contained in:
Mert Gör ☭ 2023-06-15 14:19:12 +03:00
parent 21f4468c66
commit e053c317c2
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
1 changed files with 10 additions and 0 deletions

10
python-temel/self.py Normal file
View File

@ -0,0 +1,10 @@
class Sample:
def foo(foo):
print("foo")
def bar(self):
print("bar")
a = Sample()
a.foo()
a.bar()