raw_input 或输入未按新行完成

发布于 2024-11-08 12:37:00 字数 191 浏览 0 评论 0原文

我正在使用Python语言对Cedrat Flux(一种有限元软件)进行编程。无论我尝试过什么Python命令都可以,但现在我尝试使用raw_input()input()从命令行接收用户信息。不幸的是,尽管 Python 正常,但它不会通过按换行符或 Enter 键停止接收字符。 停止的唯一方法是关闭 Flux!

I am using Python language to program Cedrat Flux (a finite element software). Whatever Python commands I tried yet was O.K. But now I am trying to receive user information from command line using raw_input() or input(). Unfortunately despite normal Python it does not stop receiving characters by pressing New Line or Enter key.
The only way to stop is to close Flux!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绿萝 2024-11-15 12:37:00

raw_input(和input,但这种区别在这里似乎不相关)只是从标准输入读取。您可以通过读取 sys.stdin 来手动执行此操作:

import sys
sys.stdin.read(1) # Read one character. '\n' means newline
sys.stdin.readline() # Read a single line, should be the same as raw_input()

如果这不起作用(即 sys.stdin.read(1) 也会阻塞,即使您输入了一些内容),标准输入可能是由主机应用程序重定向(在您的情况下为 Flux)。您可以使用主机应用程序的 API 附加到它或直接获取输入。

raw_input(and input, but that distinction seems not relevant here) is just reading from stdin. You can do that manually by reading from sys.stdin:

import sys
sys.stdin.read(1) # Read one character. '\n' means newline
sys.stdin.readline() # Read a single line, should be the same as raw_input()

If that does not work (i.e. sys.stdin.read(1) blocks too, even when you input something), the standard input may have been redirected by the host application (Flux in your case). You may be able to use an API of the host application to attach to it or get the input directly.

ˇ宁静的妩媚 2024-11-15 12:37:00

您可以将所需的数据存储在文件中,然后调用 open(".../file").read() 来读取它。

You can store the data you want in a file and call open(".../file").read() to read it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文