from ctypes import *
msvcrt = cdll.msvcrt
message_string = "Hello world!\n"
print(msvcrt.printf("Testing: %s", message_string))
when running in eclipse, the result is:
1
T
when running in IDLE, then result is:
1
why is that?
--
http://mail.python.org/mailman/listinfo/python-list
On 10月21日, 上午9时26分, Chris Rebert wrote:
> On Thu, Oct 20, 2011 at 6:08 PM, install...@189.cn wrote:
> > what i want to do is,when i press a button, i change the order of
> > selected components,how to do this?
>
> Which GUI toolkit are you using?
>
> Cheers,
>