Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は2次元の数字の配列を持っています
[[1, 123, 2], [22, 4567, 33], [0, 0, 0]]
デバッグセッションで印刷したいこと。列を並べると便利です。
pprint数字に特定の印刷形式を使用するように指示する方法はありますか(例'%4d')?
pprint
'%4d'
pprintに設定されていない場合は、
>>> masterList = [[1, 123, 2], [22, 4567, 33], [0, 0, 0]] >>> print "\n".join("\t".join(["{0:04d}".format(num) for num in subList]) for subList in masterList) 0001 0123 0002 0022 4567 0033 0000 0000 0000 >>>
それ以外の場合は、Acornのコメントを参照してください。