## Create a tablec.execute("CREATE TABLE movie(title, year, score)")## Show table namesres=c.execute("SELECT name FROM sqlite_master")res.fetchone()## Insert data into the movie tablec.execute(""" INSERT INTO movie VALUES ('Monty Python and the Holy Grail', 1975, 8.2), ('And Now for Something Completely Different', 1971, 7.5)""")