I have a basic question:
There are two lists named a1 and b1.
If I print out one item of each list, it would be a float number, but when I use a1[i]*b1[i] in a loop, it gives an error:
TypeError: can't multiply sequence by non-int of type 'float'
Why is that?
Either
a1orb1is not list of floats but a list of lists of floats.