nithir revised this gist . Go to revision
1 file changed, 6 insertions
fusion.py(file created)
| @@ -0,0 +1,6 @@ | |||
| 1 | + | cities_us = {'New York City': 'US', 'Los Angeles': 'US'} | |
| 2 | + | cities_uk = {'London': 'UK', 'Birmingham': 'UK'} | |
| 3 | + | ||
| 4 | + | cities = cities_us|cities_uk | |
| 5 | + | print(cities) | |
| 6 | + | # {'New York City': 'US', 'Los Angeles': 'US', 'London': 'UK', 'Birmingham': 'UK'} | |
Newer
Older