SUPPORT UKRAINE
- Your indifference to the act of cruelty can thrive rogue nations like Russia -
タグ
pprint
を含むブログ一覧
1
【Python 雑談・雑学 + coding challenge】Python の pprint 機能を自分で実装してみよう! 自分なりの Pretty Print できちゃいます!!
Published 2020年8月19日8:17 by mootaro23
Python では pprint モジュールが提供されていて、ネストしているデータ構造を階層的に出力してくれます。
from pprint import pprint
a = [1, 2, 3, 4, 5]
b = [1, [2, [5, 6], 3], 4]
pprint(a, indent=4, width=15)
# [1, 2, 3, 4, 5]
…
1