Создать функцию, которая берет список фильмов и возвращает новый список с фильмами год менее 2000.
films_with_year = [('Spider-man: No way to home', 2011),
('Crazy Stupid Love.', 2012),
('Die Hard', 1995),
('Dead Poets Society', 1986),
('Home Alone', 1989),
('Seven', 1995),
('Memento', 1980),
('Harry Potter and the Prisoner of Azkaban', 2004)]
films_with_year = [('Spider-man: No way to home', 2011),
('Crazy Stupid Love.', 2012),
('Die Hard', 1995),
('Dead Poets Society', 1986),
('Home Alone', 1989),
('Seven', 1995),
('Memento', 1980),
('Harry Potter and the Prisoner of Azkaban', 2004)]