如何在python中提供jupyter单元标准输入? [英] How to give jupyter cell standard input in python?

查看:45
本文介绍了如何在python中提供jupyter单元标准输入?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在接受用户输入的 jupyter 笔记本上运行一个程序,但我不知道如何让它读取标准输入.例如,如果我使用 shift-enter 运行代码:

I am trying to run a program on a jupyter notebook that accepts user input, and I cannot figure out how to get it to read standard input. For example, if I run the code with shift-enter:

a = input()
print(a)

单元格表明它正在运行,但不接受我的输入.我如何让它接受输入?

the cell indicates it is running, but does not accept input from me. How do I get it to accept input?

推荐答案

使用 raw_input()(对于 Python 2)或 input()(对于 Python 3)方法.

Use the raw_input() (for Python 2) or input() (for Python 3) methods.

示例代码:

a = raw_input()
print(a)

示例笔记本:

这篇关于如何在python中提供jupyter单元标准输入?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆