2
Hello I’m a beginner in Python and I wonder if there is how to scroll through a list within another list, I tried to make an example, but is giving this error: "Typeerror: 'int' Object is not subscriptable", if anyone can help me, from now on aggravate
result = ['spam', 1, ['Brie', 'Roquefort', 'Pol le Veq'], [1, 2, 3]]
for i in range (len(result)): # procurar em todas as listas internas
for j in range (i):
print(result[i][j])
Thank you so much for your help!
– Talita Corsine