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.
以下で試したpprint関数を調べました。
from pprint import pprint a = [[1,2],[3,4]] pprint(a)
しかし、それは私が望むものを私に与えませんでした:
1 2 3 4
これを解決する簡単な方法はありますか?
それは... そうでpprintはありません。
pprint
for i in a: print ' '.join(i)
Ignacio が言ったことを実行するか、pprint の幅を変更できます。
>>> pprint.pprint([[1,2],[3,4]], width=10) [[1, 2], [3, 4]]
ただし、リストが占めるスペースを計算する必要があります...