Below is an example of a dictionary that contains a list of cities of each country.
Example 1:country_cities_dict = {
'USA': ['New York', 'Los Angeles', 'Chicago'],
'Brazil': ['Sao Paulo', 'Rio de Janeiro', 'Brasilia'],
'Canada': ['Toronto', 'Vancouver', 'Montreal'],
'India': ['Delhi', 'Mumbai', 'Bangalore'],
'Mexico': ['Mexico City', 'Guadalajara', 'Monterrey'],
'South Africa': ['Johannesburg', 'Cape Town', 'Durban'],
'UK': ['London', 'Manchester', 'Edinburgh'],
'Kenya': ['Nairobi', 'Mombasa', 'Kisumu']
}
Let's take a look at another example with a multiplication table from 1 to 10 as a dictionary of lists.
This time we will create this dictionary using code.
Example 2:multiplication_table = {}
for i in range(1, 11):
multiplication_table[i] = [i * j for j in range(1, 11)]
print(multiplication_table)
Output:
{
1: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
2: [2, 4, 6, 8, 10, 12, 14, 16, 18, 20],
3: [3, 6, 9, 12, 15, 18, 21, 24, 27, 30],
4: [4, 8, 12, 16, 20, 24, 28, 32, 36, 40],
5: [5, 10, 15, 20, 25, 30, 35, 40, 45, 50],
6: [6, 12, 18, 24, 30, 36, 42, 48, 54, 60],
7: [7, 14, 21, 28, 35, 42, 49, 56, 63, 70],
8: [8, 16, 24, 32, 40, 48, 56, 64, 72, 80],
9: [9, 18, 27, 36, 45, 54, 63, 72, 81, 90],
10: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- Fix: python3: Library/Developer/CommandLineTools/usr/bin/python3: No module named notebook (jupyter) - Python
- Remove Html head and body tags from ckeditor source - Html
- PowerShell Get Currently Logged In User on Mac - Powershell
- Enable Native Dark Mode in Notepad++ - NotepadPlusPlus
- Mac: How to show count of files and folders in Finder - MacOS
- Upload Pdf file using PHP Script - PHP
- Parsing CSV file using Java code example (Comma Separated File) - Java
- Python: Fix ModuleNotFoundError - No module named pandas - Python