Which types of objects fall into the domain of \"subscriptable\"?
I had this same issue. I was doing
arr = [] arr.append["HI"]
So using [ was causing error. It should be arr.append("HI")
[
arr.append("HI")