'Pandas on Jupyter Notebook VS Code not displaying outputs properly

Does anyone know how to make Pandas outputs display properly in VS Code Jupyter Notebooks?

As you can see in the image, the values for individual columns in the output of a Pandas DataFrame aren't aligned (whereas they are aligned if you use Jupyter Notebooks directly on a web browser).



Solution 1:[1]

For the alignment of pandas, I think I have a relatively simple strategy. We can use IPython module.Use the following code to output the results. from IPython.display import display

display(df2)

Solution 2:[2]

I think you've got a bracket mismatch. Change your code to this:

df2.loc[df2['Airport'] == 'ATL', ['Delay']]

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 MingJie-MSFT
Solution 2 richardec