We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
a = b makes a copy if strings a = b copies the reference if lists
(Pdb) ii = [['1003 GPVR_L0003A_1 GS-MT-01', '3570.688']] (Pdb) iii = ii[0] (Pdb) iii ['1003 GPVR_L0003A_1 GS-MT-01', '3570.688'] (Pdb) aa = iii[0] (Pdb) a = 'booo' (Pdb) iii ['1003 GPVR_L0003A_1 GS-MT-01', '3570.688'] (Pdb) ii [['1003 GPVR_L0003A_1 GS-MT-01', '3570.688']] (Pdb) aa = 'boo' (Pdb) ii [['1003 GPVR_L0003A_1 GS-MT-01', '3570.688']] (Pdb) iii ['1003 GPVR_L0003A_1 GS-MT-01', '3570.688'] (Pdb) iii[0] = 'boo' (Pdb) ii [['boo', '3570.688']]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
a = b makes a copy if strings
a = b copies the reference if lists
The text was updated successfully, but these errors were encountered: