11 lines
No EOL
229 B
Python
11 lines
No EOL
229 B
Python
from dataclasses import dataclass
|
|
|
|
@dataclass
|
|
class Media:
|
|
def __init__(self, title, year):
|
|
self.year = year
|
|
self.title = title
|
|
|
|
|
|
def print_details(self):
|
|
print(f"Media: {self.title}, {self.year}") |