python-CSD-kursu/python-temel/init.2.py~
2023-06-20 20:01:04 +03:00

12 lines
272 B
Python

class Date:
def __init__(self):
self.day = 1
self.month = 1
self.year = 1900
def disp(self):
print('{}/{}/{}'.format(self.day, self.month, self.year))
date = Date()
date.disp() # Date.disp(date)