Created
July 16, 2021 13:12
-
-
Save mhassanist/5425b5b6ff3a7f669289b448191d4e14 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
x = 5 | |
y = 10 | |
temp = x | |
x = y | |
y = temp | |
print(x) | |
print(y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment