here is javascript code
var {a,b,c}=my_dict
The code takes the some parameters from a dictionary (called object in js) and defines them as local variables so they can be easily accessed later in the function. I like the syntax because it only uses a variable name once.
My question is: is there a similar feature in python?