Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Last active February 3, 2019 19:36
Show Gist options
  • Save Ventsislav-Yordanov/b9eda8e351ad0fcbe1d8712e9d9e37e5 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/b9eda8e351ad0fcbe1d8712e9d9e37e5 to your computer and use it in GitHub Desktop.
text = "Python"
text2 = text
print(id(text))
print(id(text2))
print(text is text2)
print()
text += " is awesome"
print(id(text))
print(id(text2))
print(text is text2)
print()
print(text)
print(text2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment