python-CSD-kursu/python-temel/class.date.mutable.py

13 lines
261 B
Python
Raw Normal View History

2023-06-17 14:53:33 +03:00
class Date:
def set(self, day, month, year):
self.day = day
self.month = month
self.year = year
def disp(self):
print('{}/{}/{}'.format(self.day, self.month, self.year))
date = Date()
date.set(10, 12, 1990)
date.disp()