Suppose you are building a program to manage a collection of…
Suppose you are building a program to manage a collection of movies in for Netflix. class Movie: def __init__(self, title, director, year): self.title = title self.director = director self.year = year Which one of the following will create an object from the Movie class?