Jupyter Notebook 琐碎知识点
作者:互联网
在markdown模式下输入
a[0][0] = 0
往往不会显示正确的结果。这时可以使用 转义 (反斜杠)来解决这个问题:
a\[0\]\[0\] = 0
jupyter notebook里面的 in [ ]中括号里面的数字含义,这个数字就是运行这段代码的次数。
查看Jupyter Notebook 当前运行的虚拟环境
import os, sys print(sys.executable) # print(sys.version) print(sys.version_info)
E:\Eprogramfiles\Anaconda3201910\Scripts>
pip install ipykernel -i https://pypi.douban.com/simple
E:\Eprogramfiles\Anaconda3201910\Scripts>jupyter kernelspec list
ImportError: DLL load failed while importing error: The specified module could not be found.
标签:知识点,Jupyter,Eprogramfiles,sys,Notebook,Scripts,print 来源: https://www.cnblogs.com/emanlee/p/16126950.html