Select the correct output of the following code snippet:
transport = ['plane', 'car', 'train', 'boat', 'helicopter', 'bicycle']
speed_records = [4520, 763, 375, 317]
zip_iterator = zip(transport, speed_records)
print(list(zip_iterator))Select the correct output of the following code snippet:
transport = ['plane', 'car', 'train', 'boat', 'helicopter', 'bicycle']
speed_records = [4520, 763, 375, 317]
zip_iterator = zip(transport, speed_records)
print(list(zip_iterator))Create a free account to access the full topic