For Example, if I had two lists:
listA = [1, 2, 3, 4, 5]
listB = [red, blue, orange, black, grey]
I'm trying to figure out how to display the elements in the two argument lists in two columns,
assigning 1: red, 2: blue...
and so on.
This has to be done without using the built-in zip
function.