当前位置: 首页 > 问答 > Python编程 > 问答详情

怎么在jupyter上运行程序?

09月28日 02:52170人阅读
付老师 Python编程

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

先在目录下写.py的文件

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:将脚本导入一个代码单元

# %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程序文件

%run ipython_script_test.py

输入c

c
7.5

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

来自标签:

职业技能申请领取
您的姓名
您的电话
意向课程
点击领取

环球青藤

官方QQ

扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群

问答来自

付老师 Python编程
好评率85% 浏览170

相关问题

python中如何画对数函数图?
梦老师 Python编程
python的爬虫框架有哪些?
付老师 Python编程
python中pass语句如何使用?
赵老师 Python编程
课程咨询 学员服务 公众号

扫描关注微信公众号

APP

扫描下载APP

返回顶部