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

12 lines
252 B
Python
Raw Normal View History

2023-07-15 14:53:12 +03:00
class Date:
def __init__(self, day, month, year):
self.day = day
self.month = month
self.year = year
def __str__(self):
return '{}/{}/{}'.format(self.day, self.month, self.year)
d = Date(10, 12, 2008)
print(d)