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

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

问题描述

我正在尝试在接受用户输入的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 cell标准输入?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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