PythonNote012---JupyterNotebook输出html,隐藏代码

需求:在输出html时可以隐藏代码~

1 R kernel 时

library(IRdisplay)
display_html(
'
  
' )

参考https://stackoverflow.com/questions/35015947/hiding-code-in-jupiter-in-r

2 Python kernel

from IPython.display import HTML
HTML('''
  
'''
)

2019-03-16 于南京市栖霞区紫东

你可能感兴趣的:(#,★★Python基础,★★★Python)