Value of first list changes even if I'm only appending to the second list referencing to the first one | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Value of first list changes even if I'm only appending to the second list referencing to the first one

I'm making a code that checks wether its Geometric Sequence or not and output its common ratio. This is where the problem is, the length of nums_n after this should be 4 since I'm appending to it. But the list nums also becomes the same as nums_n, this shouldn't happen, should it? nums_n = nums nums_n.append(nums[-1]*supposed_r) print(nums) https://code.sololearn.com/cf1gvR7fHfoe/?ref=app

26th Oct 2020, 8:57 AM
ใ‹ใ‚“ใงใ‚“
ใ‹ใ‚“ใงใ‚“ - avatar
5 Answers
+ 2
nums_n = nums This line makes two list object point to same location ,and any change to elements in either list changes both if you don't want that behaviour create a new list object and then assign it to nums_n, nums_n=list(nums)
26th Oct 2020, 9:03 AM
Abhay
Abhay - avatar
+ 2
Abhay Thank you very much, I'm not aware of that. I thought Python would automatically do that for me
26th Oct 2020, 9:08 AM
ใ‹ใ‚“ใงใ‚“
ใ‹ใ‚“ใงใ‚“ - avatar
+ 2
Abhay Thank you very much this will be useful
26th Oct 2020, 11:45 AM
ใ‹ใ‚“ใงใ‚“
ใ‹ใ‚“ใงใ‚“ - avatar
+ 1
Abhay Just a quick question regarding this Does it only apply to list? I tried to recreate it on integers a = 1 b = a b += 1 But a still remains 1 Thank you very much
26th Oct 2020, 11:19 AM
ใ‹ใ‚“ใงใ‚“
ใ‹ใ‚“ใงใ‚“ - avatar
+ 1
ใ‹ใ‚“ใงใ‚“ anything that is assigned is pointing to same location but the changes to both when changing one only applies for mutable objects unlike strings and int which are not mutable and any operation you do like b+=1 results in creation of new int object (b) with different location than the previous one(b), You can confirm what I said and get a better understanding by using a function called id which returns a integer number indicating where that value is stored in memory Use it like this :- print(id(variable-name))
26th Oct 2020, 11:38 AM
Abhay
Abhay - avatar