Pycharm 上的 Display() 函数

问题描述 投票:0回答:2

我正在 Pycharm 上用 python 编写代码。但我想使用仅在 Jupyter 笔记本中可用的 display() 函数。我如何在 Pycharm 中使用相同的函数“display()”?

非常感谢。

我尝试在我的 Pycharm 上安装 Iphyton,但没有成功。

pandas jupyter-notebook pycharm display
2个回答
0
投票

是否可以提供有关此特定问题发生的情况的更多背景信息?例如机器、库、版本等

这有助于概述到底是什么导致了您的设置和问题 如果是这样,则与 IPython 有关。

感谢这个话题!


0
投票

可以在pycharm中使用display。在 jupyter 或控制台中。

import pandas as pd
from IPython.display import display

x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 2, 3, 4, 5, 6, 7, 8, 9]
df = pd.DataFrame(x)

display(df)

在 pycharm jupyter 中你可以省略“display”,因为通过名称调用 DF 似乎与 display(df) 的作用相同

import pandas as pd
from IPython.display import display

x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 2, 3, 4, 5, 6, 7, 8, 9]
df = pd.DataFrame(x)

df

奇怪的是,只有在最后一种情况下pycharm jupyter才提供将数据导出到文件功能

© www.soinside.com 2019 - 2024. All rights reserved.