Say you have 2 lists of unique values, how can you create a list/dataframe/array with a record for each value.
list_1 = [1, 2, 3, 4]
list_2 = ['one', 'two', 'three', 'four']
expected = [
[1, 'one'],
[2, 'one'],
[3, 'one'],
[4, 'one'],
...
[1, 'four'],
[2, 'four'],
[3, 'four'],
[4, 'four']
]