0

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')

(エンコーディングなしでも試しました)

4

1 に答える 1

2

インタラクティブシェルで動作します:

>>> msvcrt.printf("Testing: %s".encode('ascii'), message_string.encode('ascii'))

Testing: Hello World!
22

.py ファイルに入れてから、cmd から実行してみてください

python C:\path\to\file
于 2013-03-30T11:50:55.443 に答える