Created
February 3, 2019 18:31
-
-
Save Ventsislav-Yordanov/8620571b22adc4c888be42d7bb065f68 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
skills = ["Programming", "Machine Learning", "Statistics"] | |
person = (129392130, skills) | |
print(type(person)) | |
print(person) | |
skills[2] = "Maths" | |
print(person) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For the refernce to the mutable object, how do you know the number "129392130"?