Python:为什么'_'在Jupyter Notebook字符串中格式不正确

时间:2017-09-13 08:51:37

标签: python jupyter-notebook

在Jupyter Notebook中当我用下划线格式化字符串时,它没有正确显示。

例如:

'help{}'.format('_with_underscores_')

返回'help with underscores '

如果我打印字符串,则下划线仍然缺失。 奇怪的是,下划线仍在那里。

如果我设置a = 'help{}'.format('_with_underscores_') 然后a[-1]=='_'返回True 直接从终端使用python会完美地返回下划线。

所以有两个问题:

  • 如何让我的下划线在Jupyter Notebook中正确显示?

  • 我可以依赖他们吗?

感谢那些评论过的人:在Centos上运行的Firefox上出现了这个问题。根据下面的评论,我试图在Safari和Chrome上重现它并且它很好 - 所以我将不再担心 - 再次感谢你的帮助。

0 个答案:

没有答案