Skip to content

Instantly share code, notes, and snippets.

@RyanKor
Created September 6, 2021 12:20
Show Gist options
  • Save RyanKor/fa2b17919ee30986f209c03a2858f78a to your computer and use it in GitHub Desktop.
Save RyanKor/fa2b17919ee30986f209c03a2858f78a to your computer and use it in GitHub Desktop.
Fluent Python
a = [1,2,3]
b = a
a.append(4)
print(b) # result : [1,2,3,4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment