Python Forum

Full Version: JupyterLab Dictionary Content Output Format
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Brand new to Python and this my first question on the forum (please be gentle Rolleyes)


I have defined a dictionary with separate keys and values as lists, shown below;

people = {
    "first": ["Corey", "Jane", "John"],
    "last": ["Shafer", "Doe", "Millard"],
    "email":["[email protected]","[email protected]","[email protected]"]
}
When i print the contents of the dictionary in "JupyterLab" the output is then returned in the following format;

{'first': ['Corey', 'Jane', 'John'],
 'last': ['Shafer', 'Doe', 'Millard'],
 'email': ['[email protected]',
  '[email protected]',
  '[email protected]']}
When i do the same using "Spyder" the output is returned with each keys contents list on the same line, as shown below;

{'first': ['Corey', 'Jane', 'John'], 'last': ['Shafer', 'Doe', 'Millard'], 'email': ['[email protected]', '[email protected]', '[email protected]']}
How do i get "JupyterLab" to output the contents of the dictionary the same format as "Spyder" does, all on a single line? Or at least each keys list completely on each keys line.



Must be a setting in "JupyterLabs" perhaphs?


Many thanks for taking your time, any help is really appreciated.