Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 3, 2019 04:12
Show Gist options
  • Save Ventsislav-Yordanov/d748c0ffba15f2c3b5c1d9d1e3b1bf64 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/d748c0ffba15f2c3b5c1d9d1e3b1bf64 to your computer and use it in GitHub Desktop.
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