-5

After some research I still do not know what

'int' object is not subscriptable

means, all help will be appreciated.

jack lloyd
  • 9
  • 1
  • 1
  • 4
  • 1
    Please, post your code. – il_raffa Nov 11 '15 at 09:41
  • 2
    Do you want to solve this error? Or just want to understand what does it mean? If you want the first one, please paste your code and full trackback. If you want the second one, then **duplicate of:** [Error: 'int' object is not subscriptable](http://stackoverflow.com/questions/8220702/python-error-int-object-is-not-subscriptable) and [In Python, what does it mean if an object is subscriptable or not?](http://stackoverflow.com/questions/216972/in-python-what-does-it-mean-if-an-object-is-subscriptable-or-not). – Remi Guan Nov 11 '15 at 09:46

1 Answers1

8

It means you can't do i[1] if i is an integer.

Daniel Roseman
  • 588,541
  • 66
  • 880
  • 895