class Movie: # creating a class @staticmethod # label used to depict static function being created def main(): # creating a static function # Title of favorite movie print("Title of favorite movie: The Shawshank Redemption") # Director of favorite movie print("Director of favorite movie: Frank Darabont") # Cast of favorite movie print("Cast of favorite movie: Tim Robbins, Morgan Freeman") # Genre of favorite movie print("Genre of favorite movie: Drama") # Year favorite movie was released print("Year favorite movie was released: 1994") Movie.main() # calling/invoking the static functionh