Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 3, 2019 19:04
Show Gist options
  • Save Ventsislav-Yordanov/0f51abf6a89b2686b9f331826d4a6711 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/0f51abf6a89b2686b9f331826d4a6711 to your computer and use it in GitHub Desktop.
unique_identifier = 42
age = 24
skills = ("Python", "pandas", "scikit-learn")
info = (unique_identifier, age, skills)
print(id(unique_identifier))
print(id(age))
print(info)
unique_identifier = 50
age += 1
skills += ("machine learning", "deep learning")
print(id(unique_identifier))
print(id(age))
print(info)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment