I have the code below and I want to go through and display item by item from this list. However, I can not do this because the entire list is displayed. I ask for your help.
lista = [[10,20,30,40],[50,60,70,80]]
i = 0
for i in range(2):
print (lista[i])