python-CSD-kursu/python-temel/print.example.py

10 lines
176 B
Python
Raw Normal View History

2023-07-15 14:46:35 +03:00
class Sample:
def __init__(self, val):
self.val = val
def __str__(self):
return 'Sample object, value = {}'.format(self.val)
s = Sample(100)
print(s)