0

我是 Python 新手,在 Windows 中的 Eclipse Juno 中使用 PyDev 2.71 进行以下示例:

from ctypes import cdll

msvcrt = cdll.mscvrt
message_string = "test\n"
msvcrt.printf("Testing: %s", message_string)

但是,它正在生成以下错误:

    self._handle = _dlopen(self._name, mode)
WindowsError: [Error 126] The specified module could not be found

在创建这个 PyDev 模块之前,我在 Eclipse 中添加了解释器。我在这里想念什么?

4

1 回答 1

0

我傻了,我有一个错字。

它是cdll。msvcrt不是 cdll。mscvrt

现在可以了。

于 2012-11-07T16:02:25.597 回答