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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:32:40+00:00 2026-05-23T00:32:40+00:00

Using Python 2.4, how do I print a list in a nice tabular format?

  • 0

Using Python 2.4, how do I print a list in a nice tabular format?

My list is in the below format.

mylist=[(('VAL1', 'VAL2', 'VAL3', 'VAL4', 'VAL5', 'VAL6'), AGGREGATE_VALUE)]

I have tried pprint, but it does not print the result in a tabular format.

EDIT : I would like to see the output in the below format:


VAL1        VAL2     VAL3    VAL4    VAL5    VAL6        AGGREGATE_VALUE


This table, should account for variable item lengths and still print with proper indentation.

  • 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-23T00:32:41+00:00Added an answer on May 23, 2026 at 12:32 am
    mylist = [ ( ('12', '47', '4', '574862', '58', '7856'), 'AGGREGATE_VALUE1'),
               ( ('2', '75', '757', '8233', '838', '47775272785'), 'AGGREG2'),
               ( ('4144', '78', '78965', '778', '78578', '2'), 'AGGREGATE_VALUE3')]
    
    longg = dict.fromkeys((0,1,2,3,4,5,6),0)
    
    for tu,x in mylist:
        for i,el in enumerate(tu):
            longg[i] = max(longg[i],len(str(el)))
        longg[6] = max(longg[6],len(str(x)))
    
    fofo = '  '.join('%'+str(longg[i])+'s' for i in xrange(0,7))
    print '\n'.join(fofo % (a,b,c,d,e,f,g) for (a,b,c,d,e,f),g in mylist)
    

    result

      12  47      4  574862     58         7856  AGGREGATE_VALUE1
       2  75    757    8233    838  47775272785           AGGREG2
    4144  78  78965     778  78578            2  AGGREGATE_VALUE3
    

    Don’t know if this fills your need

    EDIT 1

    Using string formatting with modulo operator (%) to print in a constant length, ‘%6s’ right-justifies in a constant length of 6, and ‘%-6s’ left-justifies in a constant length of 6.

    You’ll find precisions here

    But there is no sense to specify a constant length to print something at the end of a string, because it’s somewhat naturally-left-justified in this case.
    Then :

    longg = dict.fromkeys((0,1,2,3,4,5,),0)
    
    for tu,x in mylist:
        for i,el in enumerate(tu):
            longg[i] = max(longg[i],len(str(el)))
    
    fofo = '  '.join('%'+str(longg[i])+'s' for i in xrange(0,6)) + '  %s'
    print '\n'.join(fofo % (a,b,c,d,e,f,g) for (a,b,c,d,e,f),g in mylist)
    

    EDIT 2

    mylist = [ ( (12, 47, 4, 574862, 58, 7856), 'AGGREGATE_VALUE1'),
               ( (2, 75, 757, 8233, 838, 47775272785), 'AGGREG2'),
               ( (4144, 78, 78965, 778, 78578, 2), 'AGGREGATE_VALUE3')]
    
    longg = dict.fromkeys((0,1,2,3,4,5),0)
    
    for tu,_ in mylist:
        longg.update(( i, max(longg[i],len(str(el))) ) for i,el in enumerate(tu))
    
    fofo = '  '.join('%%%ss' % longg[i] for i in xrange(0,6)) + '  %s'
    print '\n'.join(fofo % (a,b,c,d,e,f,g) for (a,b,c,d,e,f),g in mylist)
    

    EDIT 3

    mylist = [ ( (12, 47, 4, 574862, 58, 7856), 'AGGREGATE_VALUE1'),
               ( (2, 75, 757, 8233, 838, 47775272785), 'AGGREG2'),
               ( (4144, 78, 78965, 778, 78578, 2), 'AGGREGATE_VALUE3')]
    
    header = ('Price1','Price2','reference','XYD','code','resp','AGGREG values')
    
    longg = dict(zip((0,1,2,3,4,5,6),(len(str(x)) for x in header)))
    
    for tu,x in mylist:
        longg.update(( i, max(longg[i],len(str(el))) ) for i,el in enumerate(tu))
        longg[6] = max(longg[6],len(str(x)))
    fofo = ' | '.join('%%-%ss' % longg[i] for i in xrange(0,7))
    
    print '\n'.join((fofo % header,
                     '-|-'.join( longg[i]*'-' for i in xrange(7)),
                     '\n'.join(fofo % (a,b,c,d,e,f,g) for (a,b,c,d,e,f),g in mylist)))
    

    result

    Price1 | Price2 | reference | XYD    | code  | resp        | AGGREG values   
    -------|--------|-----------|--------|-------|-------------|-----------------
    12     | 47     | 4         | 574862 | 58    | 7856        | AGGREGATE_VALUE1
    2      | 75     | 757       | 8233   | 838   | 47775272785 | AGGREG2         
    4144   | 78     | 78965     | 778    | 78578 | 2           | AGGREGATE_VALUE3
    

    Note that this kind of formatting would be much easier with the string’s method format() introduced in Python 2.6

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

Sidebar

Related Questions

Consider these examples using print in Python: >>> for i in range(4): print('.') .
Using Python I want to be able to draw text at different angles using
Using python 2.4 and the built-in ZipFile library, I cannot read very large zip
Using Python, how would I go about reading in (be from a string, file
Using Python 2.6, is there a way to check if all the items of
Using Python's Imaging Library I want to create a PNG file. I would like
When using Python's super() to do method chaining, you have to explicitly specify your
I want to start using Python for small projects but the fact that a
I'm using python and CherryPy to create a simple internal website that about 2
I am using python 2.6 on XP. I have just installed py2exe, and I

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.