I have some lists with common names and I'd like to use a for loop to concatenate them.
Bitcoin_2014 = [457.00, 639.80, 386.94, 320.19]
Bitcoin_2015 = [244.22, 263.07, 236.06, 430.57]
Bitcoin_2016 = [416.73, 673.34, 609.74, 963.74]
I'd like the for loop to be able to print all lists (since the only thing that changes are the last two digits) with the logic of the following but I know the syntax isn't correct.
for i in range(14, 17):
print(Bitcoin_20,i)
Are you able to do this in Python?