我无聊每次在jupyter笔记本中写相同和相同的代码。您能否给我一些提示和建议,以便它们在使用Jupyter Notebook编写代码时可以节省我的时间和精力,并使我工作效率更高?预先感谢。
答案 0 :(得分:1)
您可以随时使用%%writefile
导出单元格的内容。
例如:
%%writefile thiscode.py
you'd write some cool code or function in here
that you'd want to export
and maybe even use later!
您可以使用%load
从外部脚本插入代码。
%load thiscode.py
您将不必担心每个笔记本中的导入或始终添加相同的功能?现在,您只需编写一次即可在任何地方使用它!希望对您有所帮助:)