On 06/06/2019 00:57, Alan Gauld via Tutor wrote:
> But in the second example you actially change the object
> that checklimit refers to.
>
> checklimit = 22 # immutable value assigned
> feeds['bar'] = checklimit # both refer to same immutable value
> base_var = 66 # now feeds refers to orig
Hi alan,
thanks so much for clearing that up.
Now you've explained it in that way, I understand what it is doing and
how it went wrong.
Thank you so much!
Nathan
On 06/06/2019 00:57, Alan Gauld via Tutor wrote:
> On 05/06/2019 20:47, nathan tech wrote:
>
>> so for example if I do:
>>
>> feeds