Jupyter笔记本不打印下划线?

时间:2017-04-07 10:56:55

标签: jupyter-notebook

Jupyter Notebook拒绝在字符串中打印下划线。

task_line = '### [TASK] Building the app for wonders \n'
task_pattern = "# [TASK]"

task_name = task_line.split(task_pattern)[-1].strip()
task_name.replace(" ", "_")

打印:'Building_the_app_for_wonders'

但是,一个精简的示例可以正确替换:

task_name = 'Building the app for wonders' 
task_name.replace(" ", "_")

打印:'Building_the_app_for_wonders'

这是什么原因?

1 个答案:

答案 0 :(得分:2)

问题不在于Jupyter笔记本,而是在示例中呈现下划线的方式。浏览器决定不为该特定分辨率显示下划线。 :)

enter image description here

缩放显示它只是一个演示问题。

enter image description here