Movie night

Report a typo

Write the class Movie and define the class constructor with such parameters as the title, director, and the year of release.

In the corresponding variables defined below, create such objects as "Titanic" (James Cameron, 1997), "Star Wars" (George Lucas, 1977), and "Fight Club" (David Fincher, 1999).

Write a program in Python 3
class Movie:
# create class here


# objects of the class Movie
titanic = # ...
star_wars = # ...
fight_club = # ...
___

Create a free account to access the full topic