Python List of Lists with Examples


Below are some examples of lists of lists in Python programming.

Example 1: List of Cities of various countries
cities = [
    ['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!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright Β© Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap