Created
November 14, 2019 16:29
-
-
Save treyharris/314541ad35aa39acaead4046affdeae5 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
y = 3 | |
x = y # x assigned value of y | |
y = 4 | |
print(x) # Result: 3 | |
y = 3 | |
x := y # x bound to y | |
y = 4 | |
print(x) # Result: 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment