python - Screen Width too small in iPython terminal -
this question has answer here:
my ipython show list 1 tall column if long. want take full use of terminal's screen width. know not terminal issue because terminal output take use of full screen. have tried editing '.ipython/profile_default/static/custom/custom.css' have '.container { width:100% !important; }' no luck.
if understand correctly, want have output like
[1,2,3,4]
instead of
[1, 2, 3, 4]
?
if so: start ipython --no-pprint
flag or use %pprint
(see here).
Comments
Post a Comment