How to make Ipython output a list without line breaks after elements?

后端 未结 3 445
孤独总比滥情好
孤独总比滥情好 2020-12-16 11:08

The IPython console prints a list of elements with line breaks so that each element is displayed in its own line. This is usually a feature, but in my case it is a bug: I ne

3条回答
  •  有刺的猬
    2020-12-16 11:29

    You can use %pprint command to turn on/off pprint feature:

    In [1]: range(24)
    Out[1]:
    [0,
     1,
     2,
     ...
     21,
     22,
     23]
    
    In [2]: %pprint
    Pretty printing has been turned OFF
    
    In [3]: range(24)
    Out[3]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
    

    If you want to turn off pprint permanently, make a profile, and add c.PlainTextFormatter.pprint = False to the profile file.

    Linux example:

    $ ipython profile create
    [ProfileCreate] Generating default config file: '.../ipython_config.py'
    [ProfileCreate] Generating default config file: u'..../ipython_notebook_config.py'
    $ echo 'c.PlainTextFormatter.pprint = False' >> ~/.ipython/profile_default/ipython_config.py
    

提交回复
热议问题