You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""This class provides a structure to organize and display information about movies"""
valid_ratings = ["G", "PG", "PG-13", "R"]
#constructor
def __init__(self, movie_title, movie_storyline, poster_image, trailer_youtube): #underscores means it's a special function, 'self' is the new object/instance being created