I'm trying to make a loop where it changes the variable each time in the loop.
list0 = []
list1 = []
list2 = []
value = 0
for _ in range(3):
list_l = ("list" + str(value))
list_l.append("Apple")
value += 1
print(list0)
print(list1)
print(list2)
Getting error
AttributeError: 'int' object has no attribute 'append'