• 技术文章 >常用工具 >Jupyter

    怎么在jupyter上运行程序?

    yangyang2020-02-22 10:23:12原创8722

    在jupyter上运行程序的方法介绍:(推荐:jupyter使用教程

    先在目录下写.py的文件

    1

    2

    3

    4

    5

    6

    7

    def f(x, y, z):

        return (x + y) / z

     

    a = 5

    b = 6

    c = 7.5

    result = f(a, b, c)

    jupyter notebook 输入%load ipython_script_test.py:将脚本导入一个代码单元

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    # %load ipython_script_test.py

    #!/usr/bin/env python

     

    # In[8]:

     

     

    def f(x, y, z):

        return (x + y) / z

     

    a = 5

    b = 6

    c = 7.5

     

    result = f(a, b, c)

    jupyter notebook 输入%run ipython_script_test.py:运行Python程序文件

    1

    %run ipython_script_test.py

    输入c

    1

    c

    1

    7.5

    更多python知识请关注python视频教程

    专题推荐:jupyter
    上一篇:怎么在jupyter中使用python? 下一篇:怎么样在jupyter中导入源码?

    相关文章推荐

    • 怎么关闭jupyter?• 怎样用jupyter运行py文件?• 怎么在Python安装jupyter?• 怎样暂停jupyter的运行?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网