Created
December 3, 2022 14:59
-
-
Save Razzlegames/672917fa54f53852ce6857465805b8b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a = [] | |
| b = a | |
| a.append(6) | |
| print("a = " + str(a)) | |
| print ("b = " + str(b)) | |
| # output: | |
| # a = [6] | |
| # b = [6] | |
| # > |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment