films = [(1, 'Birds of Prey', 2020, 9),
(2, 'The Avengers', 2012, 10),
(3, 'Love Rosie', 2014, 7,6),
(4, 'Me Before You', 2016, 7,2),
(5, 'The Devil Wears Prada', 2006, 8)]
cur.executemany("INSERT INTO my_films VALUES (?, ?, ?, ?)", films)
con.commit()