Created
February 3, 2019 04:12
-
-
Save Ventsislav-Yordanov/d748c0ffba15f2c3b5c1d9d1e3b1bf64 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
list_values = [1, 2, 3] | |
set_values = (10, 20, 30) | |
list_values[0] = 100 | |
print(list_values) | |
set_values[0] = 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment