Python Forum
Error in Int object is not subscript-able. How to debug this ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error in Int object is not subscript-able. How to debug this ?
#1
for j in range(len(index)):
        if index[j] < i:
            line_id = humid[index[j]][i] - 1
        else:
            line_id = humid[i][index[j]] - 1
                                              ## index =[2] len(index) =1
                                              ## humid= [[0, 1, 0, 0], [0, 0, 2, 0], [0, 0, 0, 3], [0, 0, 0, 0]] 

-----------------------------------------------------------------------------------
     25     for j in range(len(index)):
     26         if index[j] < i:
---> 27             humid= humid[2][i] - 1
     28         else:
     29             humid= humid[i][index[j]] - 1

TypeError: 'int' object is not subscriptable
Reply
#2
please show code and (complete and unmodified) error message in bbcode tags.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Need help with 'str' object is not callable error. Fare 4 858 Jul-23-2023, 02:25 PM
Last Post: Fare
  pycharm debug help mg24 1 1,040 Nov-18-2022, 05:38 AM
Last Post: deanhystad
  Python debug suddenly got bad ben1122 3 1,105 Sep-03-2022, 06:20 AM
Last Post: ben1122
  Error in Int object is not subscript-able. kakut 2 1,187 Jul-06-2022, 08:31 AM
Last Post: ibreeden
  How can I find the value of k(subscript t+1) for periods t=1...50? maeva 2 1,575 Nov-07-2021, 07:59 AM
Last Post: maeva
Bug Help Debug please jamesaarr 12 3,877 Jul-28-2021, 11:20 PM
Last Post: Pedroski55
Star Type Error: 'in' object is not callable nman52 3 3,414 May-01-2021, 11:03 PM
Last Post: nman52
  error while running in debug mode ModuleNotFoundError avipy123 0 2,636 Jul-14-2020, 02:05 PM
Last Post: avipy123
  word subscript Staph 1 1,781 Mar-31-2020, 10:21 AM
Last Post: buran
  Sympy error "object is not callable" Cupcake 0 4,905 Feb-08-2020, 02:22 AM
Last Post: Cupcake

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020