1# Access elements with brackets
2L1[i] * L2[i]
3
4# NOT Like this
5L1(i) * L2(i)
1What does "TypeError: 'list' object is not callable" mean?
2
3To put it simply, the reason the error is occurring is because you
4re-assigned the builtin name list in the script.
5
6Python has a builtin named list.
7If you reassign it to some value(eg. list = [1,2,3,4,5]) then it causes
8problems in python.