Skip to content

Instantly share code, notes, and snippets.

@mhassanist
Created July 16, 2021 13:12
Show Gist options
  • Save mhassanist/5425b5b6ff3a7f669289b448191d4e14 to your computer and use it in GitHub Desktop.
Save mhassanist/5425b5b6ff3a7f669289b448191d4e14 to your computer and use it in GitHub Desktop.
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