I have two dictionaries:
worker_1 = {
"name": "Peter",
"age": 46,
"salary": 24098,
"city": "Washington"
}
worker_2 = {
"name": "Adam",
"age": 52,
"salary": 19894,
"city": "Colorado"
}
How can I change the values of these two workers so that the worker_1 gets the values of worker_2 and worker_2 gets the values of worker_1?
Thanks