Skip to content

Instantly share code, notes, and snippets.

@fchikwekwe
Created April 30, 2019 02:32
Show Gist options
  • Save fchikwekwe/42a53a8001bc7cdedf09b6a308468907 to your computer and use it in GitHub Desktop.
Save fchikwekwe/42a53a8001bc7cdedf09b6a308468907 to your computer and use it in GitHub Desktop.
list1 = [1, 2, 3]
list2 = [2, 3, 4] # different
# luckily the keys are unique here
dictionary = {
# list1 = [1, 2, 3]
list1: "a_value",
# list 2 = [2, 3, 4]
list2: "another_value"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment