玩转python标准库,好用的功能梳理

目录

  • 1.

1.

当仅通过 print() 输出的行太长,不方便查看时。

t = [[[['black', 'cyan'], 'white', ['green', 'red']], [['magenta',
    'yellow'], 'blue']]]
print(t)
[[[['black', 'cyan'], 'white', ['green', 'red']], [['magenta', 'yellow'], 'blue']]]

通过 pprint 中的 width 参数,调整每行的长度。

import pprint
t = [[[['black', 'cyan'], 'white', ['green', 'red']], [['magenta',
    'yellow'], 'blue']]]

pprint.pprint(t, width=30)

[[[['black', 'cyan'],
   'white',
   ['green', 'red']],
  [['magenta', 'yellow'],
   'blue']]]

你可能感兴趣的:(Python标准库使用,python,前端,linux)