Jupyter notebook 截断单个单元格内的值(不是行或列,而是文本)

Jupyter notebook truncates value inside of individual cells (not rows or columns, but the text)

Python 3.9.10
笔记本==6.4.8
Linux VERSION="22.04(果酱水母)"

我的数据包含很长的 UUID 字符串。无论 Jupyter 输出中显示多少行或多少列, 长 UUID 字符串在 每个单独的单元格 ...

97bd13ed-e982-482a-9fab-23fc3e588dfd_b207580a-d8bc-4fce-b125-699b03973116

...显示为...

是否有允许完整字符串出现在单元格中的设置?

要查看所有全文,您可以使用 pd.set_option('display.max_colwidth', None)

或者如果您只想将此用于一个显示器:

with pd.option_context('display.max_colwidth', None):
    display(df)