Suppose I have the following dictionary:
{'delta': -1.7127264925486676, 'beta': 0.30069982893451086, 'gamma': 1.3575879024686477}
How can I really assign those values to the variables delta
, beta
, and gamma
?
Currently, if I do print(beta)
, then it only returns me beta
instead of the value in the dictionary. What should I do to assign the values to the variables?
Thanks!