Python:
dict = {"a":1, "b":12, "c":1000}
a = dict["a"]
b = dict["b"]
c = dict["c"]
print(a) -> 1
print(b) -> 12
print(c) -> 1000
What is the pythonic way to deconstruct a dictionary?
In Javascript you could do something like this const a,b,c = dict
, but how would I do it in python?