I have 5 lists and I want to iterate through each one, set it to a variable called current, so my output should be printing current, where current is the new list that is printed every time
One = [1,2,3]
Two = [4,5,6]
Three = [7,8,9]
Four = [10,11,12]
Five = [13,14,15]
Output:
[1,2,3]
[4,5,6]
[7,8,9]
[10,11,12]
[13,14,15]