Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 440929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T20:55:17+00:00 2026-05-12T20:55:17+00:00

I have 2 dimensional list created at runtime (the number of entries in either

  • 0

I have 2 dimensional list created at runtime (the number of entries in either dimension is unknown). For example:

long_list = [ [2, 3, 6], [3, 7, 9] ]

I want to iterate through it by getting the ith entry from each list inside the long_list:

for entry in long_list.iter():
    #entry will be [2, 3] then [3, 7] then [6, 9]

I know that Python’s itertools.izip_longest() method does this. Except it takes in a different variable for each list.

itertools.izip_longest(var1, var2, var3 ...)

So, how do I split my long_list into a different variable for each list and then call izip_longest() with all those variable at runtime?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T20:55:18+00:00Added an answer on May 12, 2026 at 8:55 pm
    >>> long_list = [ [2, 3, 6], [3, 7, 9] ]
    >>> import itertools
    >>> for i in itertools.izip_longest(*long_list):      # called zip_longest in py3k
        print(i)
    
    
    (2, 3)
    (3, 7)
    (6, 9)
    

    Basically, you need to use unpacking feature here. It would work similarly for zip.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a user asking me to list the dimensions and dimension attributes of
I have a three dimensional ndarray of 2D coordinates, for example: [[[1704 1240] [1745
I want to create two dimensional array of buttons in windows form. I have
Say I have a list: L = [2,5,1,8,3,7,9,4,6,10] or something similar And I want
I have created a JTree which shows a list of files. these files have
I have a 2 dimensional arrays in php containing the Ranges. for example: From.........To
I have a simple one dimensional array but I want to split the long
I have a number of Python generators, which I want to combine into a
I have a list of string array as input. The array dimension are static
In C#, i have created ArrayList using structures. so it creates multi dimensional array

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.