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 8722059
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:19:34+00:00 2026-06-13T07:19:34+00:00

How do you print a list down and then across in Python? l =

  • 0

How do you print a list down and then across in Python?

l = [v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14]

v1 v4 v7 v10 v13  
v2 v5 v8 v11 v14  
v3 v6 v9 v12  

The length of the list can vary but for now I would like to print in a 5 column format.

  • 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-06-13T07:19:35+00:00Added an answer on June 13, 2026 at 7:19 am

    Something like this should work:

    >>> def print_list_matrix(lst, row_num):
    ...     for i in range(row_num):
    ...         print ' '.join(lst[i::row_num])
    ... 
    >>> print_list_matrix(lst, 3)
    v1 v4 v7 v10 v13
    v2 v5 v8 v11 v14
    v3 v6 v9 v12
    >>> print_list_matrix(lst, 4)
    v1 v5 v9 v13
    v2 v6 v10 v14
    v3 v7 v11
    v4 v8 v12
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having issues trying to print a list in python. I want to
In R, how can I print a character list from A to Z? With
This is a homework question, I got the basics down, but I can't seem
I have a drop down list (ddlAccount) which i can choose an item from
consider this simple function def foo(l=[]): if not l: print List is empty else
This predicate should print a list of size N containing possible permutations of 0
Is it possible to print full list without using cycle? I tried: Console.WriteLine([1;2;3;4;5]) and
I'm trying to print a list of 20 online blog articles, along with the
Why I have to use Object[] to print the list if I select specific
I'm trying to print out a list of products on a page. This is

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.