import pprint a=[[0,1,2],[3,0,4],[5,6,0]] pprint.pprint(a,width=20) [[0, 1, 2], [3, 0, 4], [5, 6, 0]]
[此贴子已经被作者于2020-6-1 16:12编辑过]