Created
February 3, 2019 19:04
-
-
Save Ventsislav-Yordanov/0f51abf6a89b2686b9f331826d4a6711 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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