Below are some examples of lists of lists in Python programming.
Example 1: List of Cities of various countriescities = [
['New York', 'Los Angeles', 'Chicago', 'Houston'],
['Tokyo', 'Osaka', 'Kyoto', 'Yokohama'],
['Sydney', 'Melbourne', 'Brisbane', 'Perth'],
['Moscow', 'Saint Petersburg', 'Novosibirsk', 'Yekaterinburg']
['Cairo', 'Alexandria', 'Luxor', 'Giza'],
['London', 'Manchester', 'Birmingham'],
['Rio de Janeiro', 'SΓ£o Paulo', 'Salvador', 'BrasΓlia'],
['Mumbai', 'Delhi', 'Bangalore', 'Chennai'],
['Paris', 'Marseille', 'Lyon', 'Toulouse'],
['Cape Town', 'Johannesburg', 'Durban', 'Pretoria'],
]
Example 2: List of the Multiplication table of 1-5
multiplication_tables = [
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
[2, 4, 6, 8, 10, 12, 14, 16, 18, 20],
[3, 6, 9, 12, 15, 18, 21, 24, 27, 30],
[4, 8, 12, 16, 20, 24, 28, 32, 36, 40],
[5, 10, 15, 20, 25, 30, 35, 40, 45, 50]
]
Example 3: List of dates in each month of 2023
dates_2023 = [
[],
['January 1', 'January 2', 'January 3', ..., 'January 31'],
['February 1', 'February 2', 'February 3', ..., 'February 28'],
['March 1', 'March 2', 'March 3', ..., 'March 31'],
['April 1', 'April 2', 'April 3', ..., 'April 30'],
['May 1', 'May 2', 'May 3', ..., 'May 31'],
['June 1', 'June 2', 'June 3', ..., 'June 30'],
['July 1', 'July 2', 'July 3', ..., 'July 31'],
['August 1', 'August 2', 'August 3', ..., 'August 31'],
['September 1', 'September 2', 'September 3', ..., 'September 30'],
['October 1', 'October 2', 'October 3', ..., 'October 31'],
['November 1', 'November 2', 'November 3', ..., 'November 30'],
['December 1', 'December 2', 'December 3', ..., 'December 31']
]
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- Python List of Lists with Examples
- Fix: ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none) ERROR: No matching distribution found for tkinter
- How to Convert Python Notebook .ipynb (JSON) to Executable .py Module
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- Python: Pandas Merge Indicator (Left, Right and Both) Example
- Fix: EOFError Exception in Python
- How to URL Decode a Query String in Python
- How to take user input from the console in a Python program
- Compare two lists in Python and return matches
- How to change the Python Default version
- Fix: KeyError: exception in Python
- How to get the Execution Time of A Python Program
- Fix: ModuleNotFoundError: No module named boto3 [Python]
- How to get unique values from a list in Python
- How to pip install Python Modules in VSCode
- Python: Fix - TypeError: NoneType object is not iterable
- How to delete a file using Python code example
- How to create a dictionary comprehension in Python
- Python: Get just the filename without extension using Path
- How to comment out a block of code in Python
- How to add two float numbers in Python
- Python: How to POST Json Data with HTTP Request
- Get MD5 Hash as Checksum of a String in Python
- Python - Convert float to String
- How to Parse XML String in Python
More Posts:
- Best way to Store Date of Birth in Java 8 and Above - Java
- Python: Access Environment Variables - Python
- Mortgage Calculator - Tools
- [Fix] Java - Exception in thread main java.lang.IllegalThreadStateException - Java
- What does has notifications silenced in Messages App mean in iPhone - iOS
- How to make Android EditText not editable - Android
- 33: Python Program to send an email vid GMail - Python
- Create Duplicate Line Visual Studio Code (above or below) Example - HowTos