我已经安装了Python 2.7.3和PyScripter。 当我试图运行这个简单的代码时,interupter没有显示任何内容:
from ctypes import *
msvcrt = cdll.msvcrt
message_string = "Hello world!\n"
msvcrt.printf("Testing: %s".encode('ascii'), message_string.encode('ascii')
(也试过没有编码)
答案 0 :(得分:2)
在交互式shell中为我工作:
>>> msvcrt.printf("Testing: %s".encode('ascii'), message_string.encode('ascii'))
Testing: Hello World!
22
尝试将其放在.py文件中,然后从cmd
运行python C:\path\to\file