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

10 lines
176 B
Python

class Sample:
def __init__(self, val):
self.val = val
def __str__(self):
return 'Sample object, value = {}'.format(self.val)
s = Sample(100)
print(s)