Say I have the following lists:
list_1 = [1, 2, 3]
list_2 = ['a', 'b', 'c']
list_3 = ['red', 'yellow', 'blue']
And I want to create one list of lists, as follows:
combined_list = [[1, 'a', 'red'],
[2, 'b', 'yellow'],
[3, 'c', 'blue']]
What is the best way of going about this?