How do I merge dictionaries in Python?

I have two dictionaries one is for my old customers and the other is for my new customers. I want to merge them both and make a single dictionary. I’m using a loop that does not look like an efficient way of doing it as it takes a long time and performance is also affected. Let me show you my method below:

Can someone suggest an alternative way or share any method available in Python for merging dictionaries?