------
## 最终结论
```python
def merge_dictionaries_three(dict1, dict2, dict3):
    return {**dict1, **dict2, **dict3}
```