Python Forum
why does the list of list replicate this way?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
why does the list of list replicate this way?
#1


a = [[]] * 10

a
[[], [], [], [], [], [], [], [], [], []]

a[0].append((1,2))

a
[[(1, 2)], [(1, 2)], [(1, 2)], [(1, 2)], [(1, 2)], [(1, 2)], [(1, 2)], [(1, 2)], [(1, 2)], [(1, 2)]]
Why does it replicate the values across the entire list? Bizarre Huh
Reply
#2
Because list are reference. [[]] * 10 makes 10 reference copies.
a = [[] for x in range(10)]
99 percent of computer problems exists between chair and keyboard.
Reply
#3
Thanks very much windspar.
That was as simple as that :)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  No matter what I do I get back "List indices must be integers or slices, not list" Radical 4 1,170 Sep-24-2023, 05:03 AM
Last Post: deanhystad
  Delete strings from a list to create a new only number list Dvdscot 8 1,535 May-01-2023, 09:06 PM
Last Post: deanhystad
  List all possibilities of a nested-list by flattened lists sparkt 1 919 Feb-23-2023, 02:21 PM
Last Post: sparkt
  Сheck if an element from a list is in another list that contains a namedtuple elnk 8 1,837 Oct-26-2022, 04:03 PM
Last Post: deanhystad
Question Keyword to build list from list of objects? pfdjhfuys 3 1,565 Aug-06-2022, 11:39 PM
Last Post: Pedroski55
  Replicate Excel operations with Python Lumberjack 3 1,816 May-10-2022, 01:44 AM
Last Post: Lumberjack
  Split a number to list and list sum must be number sunny9495 5 2,288 Apr-28-2022, 09:32 AM
Last Post: Dexty
  How to check if a list is in another list finndude 4 1,837 Jan-17-2022, 05:04 PM
Last Post: bowlofred
  Different out when using conda list and pip list Led_Zeppelin 1 4,042 Jan-14-2022, 09:30 PM
Last Post: snippsat
  Use one list as search key for another list with sublist of list jc4d 4 2,160 Jan-11-2022, 12:10 PM
Last Post: jc4d

Forum Jump:

User Panel Messages

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