Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created May 6, 2021 13:10
Embed
What would you like to do?
a = 8
b = 10
c = a
a = b
b = c
print("a =", a)
print("b = ", b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment