如何在Python中获得类似于Pascal readkey的字符
在 Pascal 中,我可以执行此代码以从键盘输入中获取字符:
uses crt;
var ch: char;
begin
ch := '.';
while ch <> '\' do
begin
ch := readkey;
writeln( ch );
end;
end;
Python 中是否有类似的代码? :)
In Pascal I can execute this code to get a character from keyboard input:
uses crt;
var ch: char;
begin
ch := '.';
while ch <> '\' do
begin
ch := readkey;
writeln( ch );
end;
end;
Is there a similar one in Python? :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以通过在后台运行
Tkinter
来完成此操作:(黑客来源:http://www.daniweb.com/forums/post567365.html#post567365)
You could do it by running
Tkinter
in the background:(Hacked from: http://www.daniweb.com/forums/post567365.html#post567365)
raw_input。
然后切片第一个字符。
raw_input.
Then slice the first character.
您不能
使用 CRT
;我建议您改为导入 pygame
。You can't
use CRT
; I recommend you toimport pygame
instead.