2005年06月27日 星期一 09:19
Skipped content of type multipart/mixed-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3066 bytes Desc: not available Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050627/04f07d7c/smime.bin
2005年06月27日 星期一 09:25
这个我也想知道。类似的还有如何在Python中实现"Press any key to continue..." 2005/6/27, Neo Chan (netkiller) <neo.chen at achievo.com>: > > 如C中的getch() 接下key后反回value. > raw_input不成..他要等回车. > > Neo Chan (netkiller) > Best Regards, 73 de BG7NYT > > Amateur Radio Callsign: BG7NYT > CQCQCQ This is BG7NYT Calling CQ and Stand By. 439.460MHz > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050627/226b8dfb/attachment.html
2005年06月27日 星期一 09:28
try this: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/134892 在 2005年6月27日 星期一 09:19,Neo Chan (netkiller) 写道: > getch
2005年06月27日 星期一 09:34
Skipped content of type multipart/mixed-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3066 bytes Desc: not available Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050627/807daac4/smime.bin
2005年06月27日 星期一 09:36
我试了在windows下可以使用msvcrt模块,其中有getch()函数。在Linux下我想要使用cursor了。没再试了。 你可以看一下getpass模块(用来从终端读密码用的),它就是可以兼容windows和unix,我简单看了一下,对于不同平台的处理是不同的。其中在windows平台就是使用msvcrt模块。而unix它使用了termios模块。 在 05-6-27,March Liu<march.liu at gmail.com> 写道: > 这个我也想知道。类似的还有如何在Python中实现"Press any key to continue..." > > 2005/6/27, Neo Chan (netkiller) <neo.chen at achievo.com>: > > > > > > 如C中的getch() 接下key后反回value. > > raw_input不成..他要等回车. > > > > Neo Chan (netkiller) > > Best Regards, 73 de BG7NYT > > > > Amateur Radio Callsign: BG7NYT > > CQCQCQ This is BG7NYT Calling CQ and Stand By. 439.460MHz > > > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > -- > 欢迎访问: > http://blog.csdn.net/ccat > > 刘鑫 > March.Liu > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- I like python! My Donews Blog: http://www.donews.net/limodou New Google Maillist: http://groups-beta.google.com/group/python-cn
2005年06月27日 星期一 09:42
Skipped content of type multipart/mixed-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3066 bytes Desc: not available Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050627/8d407557/smime.bin
2005年06月27日 星期一 21:14
linux下面是不是可以用select while : 1 i, o, e = select.select([sys.stdin, ], [], []) if i : c = i[0].read() 然后开一个线程,不停地读。 随手写了两行,也没有试。
Zeuux © 2025
京ICP备05028076号