ipynb文件与py文件互转

ipynb文件与py文件互转
jupyter notebook里ipynb文件转为py文件
方法一:
  在xxx.ipynb所在目录下,打开终端,并输入命令:

 jupyter nbconvert xxx.ipynb --to script 

1.其中xxx.ipynb是要转换文件的名字,转换后在该目录下出现xxx.py文件。

方法二:
  启动Jupyter notebook
  在网页下找打ipynb文件,然后选择file–download as–python file,默认自动转换。

py文件转为ipynb文件
方法一: jupyter notebook 加载py文件(即转为ipynb文件)
In [ ]:%run xxx.py
直接运行xxx.py文件,相当于导包。
In [ ]:%load xxx.py
把xxx.py的代码显示出来。

方法二:pycharm 中 tools—convert jupyter notebook 命令

你可能感兴趣的:(python)