How to extend pretty print module to tables?

前端 未结 4 1936
傲寒
傲寒 2020-12-22 13:40

I have the pretty print module, which I prepared because I was not happy the pprint module produced zillion lines for list of numbers which had one list of list. Here is exa

4条回答
  •  臣服心动
    2020-12-22 14:15

    You can write:

    '\n'.join(  # join the lines with '\n'
           ' '.join(  # join one line with ' '
                  "%2d" % (i + j) # format each item
            for i in range(10))
        for j in range(10))
    

提交回复
热议问题