0

程序从多少行开始?多少列?每个列的对齐方式?(左(L),中心(C),右(R))。然后接受用户的条目(表中的数据)。条目应以用户指定的格式打印?这是我到目前为止所做的:

rows = input("How many rows?")
coloumns = input("How many coloumns?")
alignment = raw_input("Enter alignment of each table?")
entry = raw_input("Enter rows x cols entries:")
print entry

我认为我必须以这样一种方式格式化条目,以使其完全符合用户的需求。我该怎么做?谢谢

4

1 回答 1

0

http://ginstrom.com/scribbles/2007/09/04/pretty-printing-a-table-in-python/引用的这段代码将为您提供帮助。

import locale
locale.setlocale(locale.LC_NUMERIC, "")
def format_num(num):
    """Format a number according to given places.
    Adds commas, etc. Will truncate floats into ints!"""

    try:
        inum = int(num)
        return locale.format("%.*f", (0, inum), True)

    except (ValueError, TypeError):
        return str(num)


def get_max_width(table, index):
    """Get the maximum width of the given column index"""
    return max([len(format_num(row[index])) for row in table])

def pprint_table(out, table):
    """Prints out a table of data, padded for alignment
    @param out: Output stream (file-like object)
    @param table: The table to print. A list of lists.
    Each row must have the same number of columns. """
    col_paddings = []

    for i in range(len(table[0])):
        col_paddings.append(get_max_width(table, i))

    for row in table:
        # left col
        print >> out, row[0].ljust(col_paddings[0] + 1),
        # rest of the cols
        for i in range(1, len(row)):
            col = format_num(row[i]).rjust(col_paddings[i] + 2)
            print >> out, col,
        print >> out


table = [["", "taste", "land speed", "life"],
    ["spam", 300101, 4, 1003],
    ["eggs", 105, 13, 42],
    ["lumberjacks", 13, 105, 10]]

import sys
out = sys.stdout
pprint_table(out, table)

在您的情况下,因为您正在收集表格中的行、列、对齐和条目的输入,您可以将它们插入以构造您的table变量。

  • len(table[0]) 相当于列数(-1 以防止在“y 轴”标签中计数,也称为表索引)。
  • len(table) 等于您的行数(-1 以防止在表头中计数)。
  • col_padding(对齐)是在计算特定列时使用rjust和方法动态计算的。ljust
  • 并且表列表中的每个元素都可以使用标准的 python 列表语法进行更新。
于 2012-11-05T02:35:08.143 回答