print example polymorphism 3

This commit is contained in:
Mert Gör 🇹🇷 2023-07-15 14:53:12 +03:00
parent 26386c4368
commit a5b8fac0eb
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,11 @@
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)