2
matrix = [ [1,2,3], [4,5,6], [7,8,9] ]
import pprint
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(matrix)

这打印得不好。它丑陋的印刷品。

[[1, 2, 3], [4, 5, 6], [7, 8, 9]]

是什么赋予了??

4

1 回答 1

5

这是因为在一行上打印的数组的长度小于默认值width80。您可能需要查看pprint.

例如,如果我们这样做:

matrix = [ [1,2,3], [4,5,6], [7,8,9] ]
import pprint
pp = pprint.PrettyPrinter(indent=4,width=20)
pp.pprint(matrix)

我们得到:

[   [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]]
于 2013-09-23T02:17:06.420 回答