在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.

 

 

 

查看原文