How can I handle the char immediately after its input, without waiting an endline?

rishi pathak mailmaverick666 at gmail.com
Wed Oct 22 05:16:33 EDT 2008


The below piece of code should give you some understanding

import tty
import sys
tty.setraw(sys.stdin.fileno())
char=''
print "Press x to exit"
while char != 'x' :
        char = sys.stdin.read(1)
        print "You entered : ",char
        # Your code here


On Wed, Oct 22, 2008 at 2:34 PM, Lave <lave.wang.w at gmail.com> wrote:

> Hi, all.
>
> I'm a new comer. So This question maybe sutpid.:)
>
> I want to write something that handle every char immediately after its
> input. Then tehe user don't need to type [RETURN] each time. How can I
> do this?
>
> Thanks in advance.
>
>
> --
> Regards
>
> Lave
> --
> http://mail.python.org/mailman/listinfo/python-list
>



-- 
Regards--
Rishi Pathak
Pune-Maharastra
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20081022/e5aeea0a/attachment.html>


More information about the Python-list mailing list