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: Convert Date to DateTime
- How to sort a List using Lambda in Python
- Python matplotlib segmentation fault: 11 macOS Big Sur
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to install Python 3.11 on Mac
- How to flatten a nested list in Python
- Python: Pandas Merge DataFrames on Index Example
- How to Run all Cells at Once Jupyter Notebook
- Python - Convert float to String
- How to add borders to tkinter label text
- How to Exit a Loop in Python Code
- [Python] Fix: ValueError: All arrays must be of the same length
- Sorting an array using Bubble Sort in Python Programming
- How to Unzip a file using Python
- Python: Merge DataFrames Pandas Outer Join Example
- Change label (text) color in tkinter
- Convert Float to String in Python
- Fix: fatal error: No such file or directory compilation terminated
- Python: Access index/counter of a for loop iteration
- Import Other Python Files Examples
- How to install Anaconda on Mac (M1/M2 Mac)
- Python Regular Expression to Find All Matches in List
- How to Read a binary File with Python
- How to disable warnings while Python file execution
- Know current Python Version
More Posts:
- Fix: python3: Library/Developer/CommandLineTools/usr/bin/python3: No module named notebook (jupyter) - Python
- How to Get File Size using Python in Bytes/KB/MB or GB - Python
- Eclipse : This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in - Eclipse
- Possible outages message Google Webmaster tool - Google
- The default username and password for RabbitMQ - HowTos
- How to stop and start a docker container - Docker
- Update All Outdated Modules/Packages using pip3 - PIP
- Chessboard with pieces using pure HTML and CSS - Html