Python Forum
printing text tables with consistent width
Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
printing text tables with consistent width
#5
(Jun-30-2018, 03:56 PM)ichabod801 Wrote: I've done this a few times. Get the string output as a list of lists. For each index in the sub-lists, get maximum width. Construct a format string with those widths and the justifications you want. Apply the rows to that format string repeatedly, printing or joining with '\n'.
BTDT2

just did one today which is why i was thinking or hoping something making this easy would be nice if it existed. you just print via a method of this class, giving each column as an argument. it would save the data and accumulate the max width of each column. once done a final method is called, then it actually prints the saved data, formatting each column to the max width or a specified width. it will also remember if a column is entirely numeric and right-justify if so, else left-justify, unless the justification is specified.

i didn't see any documentation for tabulate. where does that come from?
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply


Messages In This Thread
RE: printing text tables with consistent width - by Skaperen - Jun-30-2018, 05:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python code to set column width 1418 11 7,176 Jan-20-2024, 07:20 AM
Last Post: Pedroski55
  Fixed colum width for rowLabels i Matplotlib pandabay 0 1,035 Jun-10-2023, 03:40 PM
Last Post: pandabay
  Setup host for consistent data transfer to client via TCP Gustav97 0 1,297 Jun-27-2022, 07:33 PM
Last Post: Gustav97
  Consistent error Led_Zeppelin 1 2,462 Dec-20-2021, 01:39 AM
Last Post: snippsat
  width of Unicode character Skaperen 6 4,041 Sep-27-2021, 12:41 AM
Last Post: Skaperen
  image.thumbnail(width, height) not working PCesarano 2 4,748 Apr-08-2021, 06:09 PM
Last Post: PCesarano
  Error printing colored text julio2000 0 1,847 Feb-02-2020, 07:04 PM
Last Post: julio2000
  How can I get the width of a string in Python? aquerci 14 20,408 May-27-2019, 06:00 PM
Last Post: heiner55
  fixed width numbers Skaperen 15 12,044 May-27-2019, 09:42 AM
Last Post: Skaperen
  Printing lines in a basic text file Drone4four 6 6,637 Aug-16-2018, 03:10 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020