Python Forum
An array "mystery": The same array, the same operations but different outcomes
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
An array "mystery": The same array, the same operations but different outcomes
#1
Shocked 
I wrote the following code, where two identical arrays h and h1 are defined in different ways.
Then I produce the same operations on them and print the modified arrays. To my surprise, the outcome is different. The outcome for h1 is what I was expecting for both.

Please help me to understand why.

Here is the code:
    l1=3
    l2=3
    
    h=l1*[l2*[0]] 
    
    h1=[[0, 0, 0], [0, 0, 0], [0, 0, 0] ]

    print(h==h1)
    
    
#operations on array h   
    
    for i in range(3):
        for j in range(3):
            
                
            if i==0: 
                h[0][0]=1
                
                
            elif j==0: 
                h[i][j]=99
                
            else: pass
        
    print(h)
#IDENTICAL operations on array h1
    for i in range(3):
        for j in range(3):
            
                
            if i==0: 
                h1[0][0]=1
                
                
            elif j==0: 
                h1[i][j]=99
                
            else: pass
        
    print(h1)
    
#QUESTION: Why print(h) and print(h1) result in different arrays, when the initial
# arrays and the operations on them are the same ?

The outcome:

True
[[99, 0, 0], [99, 0, 0], [99, 0, 0]]
[[1, 0, 0], [99, 0, 0], [99, 0, 0]]
Reply
#2
The initial arrays are not the same. The first one creates a list, then puts several references to that list in another list. There's only two list objects here, the inside one and the outside one. If the inside list is modified, all three references to it are changed.

The second list creates 3 separate interior lists and puts them all in another list. There are four separate list objects that are independent. Changing one doesn't affect the others.

>>> h = 3 * [3*[0]]
>>> print([id(x) for x in h])
[4327610368, 4327610368, 4327610368]   # 3 references to the same object
>>> h1 = [[0,0,0], [0,0,0], [0,0,0]]
>>> print([id(x) for x in h1])
[4328654144, 4328656704, 4328678144]   # 3 different objects
mewss likes this post
Reply
#3
(Feb-17-2021, 06:20 PM)bowlofred Wrote: The initial arrays are not the same. The first one creates a list, then puts several references to that list in another list. There's only two list objects here, the inside one and the outside one. If the inside list is modified, all three references to it are changed.

The second list creates 3 separate interior lists and puts them all in another list. There are four separate list objects that are independent. Changing one doesn't affect the others.

>>> h = 3 * [3*[0]]
>>> print([id(x) for x in h])
[4327610368, 4327610368, 4327610368]   # 3 references to the same object
>>> h1 = [[0,0,0], [0,0,0], [0,0,0]]
>>> print([id(x) for x in h1])
[4328654144, 4328656704, 4328678144]   # 3 different objects
Reply
#4
I can see now. Thank you!!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Smile Print Mystery Rchrd 3 1,212 Nov-10-2024, 01:51 AM
Last Post: Rchrd
  Numpy, array(2d,bool), flipping regions. MvGulik 2 941 Oct-27-2024, 11:06 AM
Last Post: MvGulik
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 1,010 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  ValueError: could not broadcast input array from shape makingwithheld 1 2,098 Jul-06-2024, 03:02 PM
Last Post: paul18fr
  python code to calculate mean of an array of numbers using numpy viren 3 1,103 May-29-2024, 04:49 PM
Last Post: Gribouillis
  Writing a cycle to find the nearest point from the array Tysrusko 0 741 May-10-2024, 11:49 AM
Last Post: Tysrusko
  Elegant way to apply each element of an array to a dataframe? sawtooth500 7 2,481 Mar-29-2024, 05:51 PM
Last Post: deanhystad
  Concatenate array for 3D plotting armanditod 1 1,282 Mar-21-2024, 08:08 PM
Last Post: deanhystad
  Convert numpy array to image without loading it into RAM. DreamingInsanity 7 8,839 Feb-08-2024, 09:38 AM
Last Post: paul18fr
  How Write Part of a Binary Array? Assembler 1 963 Jan-14-2024, 11:35 PM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

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