Python Forum
Error: int object does not support item assignment
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error: int object does not support item assignment
#2
As the error says, L is an integer. On line 12 you set it as an integer by using it as the loop variable in the for loop. Then on line 17 when you try to index it, you get the error. You can't index integers, only containers.

It's not clear what you expect L to be. It's not defined previously in the code you posted, but your error indicates there's a lot of code you didn't post. If you previously defined it to be something else, change the name of your loop variable on line 12.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
RE: Error: int object does not support item assignment - by ichabod801 - Jul-07-2019, 10:19 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Need help with 'str' object is not callable error. Fare 4 1,060 Jul-23-2023, 02:25 PM
Last Post: Fare
  Error in Int object is not subscript-able. kakut 2 1,281 Jul-06-2022, 08:31 AM
Last Post: ibreeden
  Remove an item from a list contained in another item in python CompleteNewb 19 6,226 Nov-11-2021, 06:43 AM
Last Post: Gribouillis
  TypeError: sequence item 0: expected str instance, float found Error Query eddywinch82 1 5,402 Sep-04-2021, 09:16 PM
Last Post: eddywinch82
Star Type Error: 'in' object is not callable nman52 3 3,617 May-01-2021, 11:03 PM
Last Post: nman52
  Error in Int object is not subscript-able. How to debug this ? yanDvator 1 2,318 Aug-03-2020, 02:28 PM
Last Post: Larz60+
  Sympy error "object is not callable" Cupcake 0 5,097 Feb-08-2020, 02:22 AM
Last Post: Cupcake
  object is not subscriptable... Error Message? Shafla 3 12,210 Sep-25-2019, 12:27 AM
Last Post: buran
  'int' object does not support item assignment shane1236 5 8,055 Aug-13-2019, 01:53 PM
Last Post: buran
  Getting error "Type error-a bytes-like object..." mrapple2020 1 5,526 Apr-06-2019, 06:37 PM
Last Post: mrapple2020

Forum Jump:

User Panel Messages

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