Instruction
Good job! Let's move on to CSV writing.
Exercise
Write the contents of the longest_flights list into a CSV file named longest_flights.csv. Use default write settings. Do not add a header row.
Stuck? Here's a hint!
Use the following template:
with open('filename.csv', mode='w', newline='') as csv_file:
csv_writer = csv.writer(csv_file)
csv_writer.writerows(rows)



