I want to remove all duplicates values from a list of list.
So I have a list of lists like this.
a=[['102 min', '', 'Comedy', 'User Rating: 6.6/10 (4,072 user ratings)', '69', 'Metascore', '', 'Rank:', '10', 'Showtimes:', 'Studio Movie Grill - Downey', '11:00 am', '', '1:35 pm', '', '4:10', '', '4:55', '', '7:40', '', '9:55', '', '10:35'], ['110 min', '', 'Comedy', '', 'Drama', '', 'Romance', 'User Rating: 8.1/10 (11,478 user ratings)', '73', 'Metascore', '', 'Rank:', '18', 'Showtimes:', 'Studio Movie Grill - Downey', '11:30 am', '', '2:10 pm', '', '4:45', '', '7:25', '', '10:00'], ['111 min', '', 'Action', '', 'Adventure', '', 'SciFi', 'User Rating: 6/10 (23,905 user ratings)', '44', 'Metascore', '', 'Rank:', '7', 'Showtimes:', 'Studio Movie Grill - Downey', '11:05 am', '', '1:50 pm', '', '4:35', '', '7:20', '', '10:05'], ['118 min', '', 'Action', '', 'Adventure', '', 'Drama', '', 'Fantasy', '', 'Thriller', 'User Rating: 6.8/10 (45,126 user ratings)', '48', 'Metascore', '', 'Rank:', '8', 'Showtimes:', 'Studio Movie Grill - Downey', '11:10 am', '', '1:55 pm', '', '4:40', '', '7:35', '', '10:20'], ['120 min', '', 'Thriller', 'User Rating: 4.9/10 (1,002 user ratings)', '32', 'Metascore', '', 'Rank:', '16', 'Showtimes:', 'Studio Movie Grill - Downey', '11:20 am', '', '2:05 pm', '', '4:50', '', '7:45', '', '10:40'], ['134 min', '', 'Action', '', 'Adventure', '', 'SciFi', 'User Rating: 7.8/10 (223,161 user ratings)', '88', 'Metascore', '', 'Rank:', '4', 'Showtimes:', 'Studio Movie Grill - Downey', '12:00 pm', '', '4:05', '', '7:15', '', '10:15'], ['140 min', '', 'Action', '', 'Adventure', '', 'SciFi', 'User Rating: 7.9/10 (76,138 user ratings)', '64', 'Metascore', '', 'Rank:', '1', 'Showtimes:', 'Studio Movie Grill - Downey', '11:45 am', '', '4:00 pm', '', '7:10', '', '10:10'], ['86 min', '', 'Animation', '', 'Adventure', '', 'Comedy', '', 'Family', '', 'Fantasy', '', 'Mystery', '', 'Romance', 'User Rating: 4.7/10 (1,275 user ratings)', '36', 'Metascore', '', 'Rank:', '75', 'Showtimes:', 'Studio Movie Grill - Downey', '11:00 am', '', '1:15 pm', '', '3:30', '', '5:45', '', '7:55'], ['90 min', '', 'Drama', '', 'Horror', '', 'Thriller', 'User Rating: 8.2/10 (28,256 user ratings)', '82', 'Metascore', '', 'Rank:', '2', 'Showtimes:', 'Studio Movie Grill - Downey', '11:15 am', '', '12:05 pm', '', '1:40', '', '2:30', '', '4:15', '', '6:40', '', '7:30', '', '9:05', '', '10:15']]
I want to have:
unique = [['102 min', 'Comedy', 'User Rating: 6.6/10 (4,072 user ratings)', '69', 'Metascore', 'Rank:', '10', 'Showtimes:', 'Studio Movie Grill - Downey', '11:00 am', '1:35 pm', '4:10', '4:55', '7:40', '9:55', '10:35'], ['110 min', 'Comedy', 'Drama', 'Romance', 'User Rating: 8.1/10 (11,478 user ratings)', '73', 'Metascore', 'Rank:', '18', 'Showtimes:', 'Studio Movie Grill - Downey', '11:30 am', '2:10 pm', '4:45', '7:25', '10:00'], ['111 min', 'Action', 'Adventure', 'SciFi', 'User Rating: 6/10 (23,905 user ratings)', '44', 'Metascore', 'Rank:', '7', 'Showtimes:', 'Studio Movie Grill - Downey', '11:05 am', '1:50 pm', '4:35', '7:20', '10:05'], ['118 min', 'Action', 'Adventure', 'Drama', 'Fantasy', 'Thriller', 'User Rating: 6.8/10 (45,126 user ratings)', '48', 'Metascore', 'Rank:', '8', 'Showtimes:', 'Studio Movie Grill - Downey', '11:10 am', '1:55 pm', '4:40', '7:35', '10:20'], ['120 min', 'Thriller', 'User Rating: 4.9/10 (1,002 user ratings)', '32', 'Metascore', 'Rank:', '16', 'Showtimes:', 'Studio Movie Grill - Downey', '11:20 am', '2:05 pm', '4:50', '7:45', '10:40'], ['134 min', 'Action', 'Adventure', 'SciFi', 'User Rating: 7.8/10 (223,161 user ratings)', '88', 'Metascore', 'Rank:', '4', 'Showtimes:', 'Studio Movie Grill - Downey', '12:00 pm', '4:05', '7:15', '10:15'], ['140 min', 'Action', 'Adventure', 'SciFi', 'User Rating: 7.9/10 (76,138 user ratings)', '64', 'Metascore', 'Rank:', '1', 'Showtimes:', 'Studio Movie Grill - Downey', '11:45 am', '4:00 pm', '7:10', '10:10'], ['86 min', 'Animation', 'Adventure', 'Comedy', 'Family', 'Fantasy', 'Mystery', 'Romance', 'User Rating: 4.7/10 (1,275 user ratings)', '36', 'Metascore', 'Rank:', '75', 'Showtimes:', 'Studio Movie Grill - Downey', '11:00 am', '1:15 pm', '3:30', '5:45', '7:55'], ['90 min', 'Drama', 'Horror', 'Thriller', 'User Rating: 8.2/10 (28,256 user ratings)', '82', 'Metascore', 'Rank:', '2', 'Showtimes:', 'Studio Movie Grill - Downey', '11:15 am', '12:05 pm', '1:40', '2:30', '4:15', '6:40', '7:30', '9:05', '10:15']]
I don't know how to do.
I tried following
unique = []
[unique.append(item) for item in a if item not in unique]
Thank you