Python C API:如何使用 Py_eval_input 获取 PyRun_String 以使用导入的模块?
PyRun_String("random.randint(1,10)", Py_eval_input, globals, globals);
返回错误:
Traceback (most recent call last):
File "<string>", line 1, in <module>
NameError: name 'random' is not defined
在代码的前面,我做了:
PyImport_ImportModule("random");
我想这不是让它工作的方法。正确的方法是什么? 谢谢你!
PyRun_String("random.randint(1,10)", Py_eval_input, globals, globals);
returns error with:
Traceback (most recent call last):
File "<string>", line 1, in <module>
NameError: name 'random' is not defined
earlier in the code, I did:
PyImport_ImportModule("random");
I guess this is not the way to get it work. What is the correct way?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PyImport_ImportModule
返回导入的值。您需要将其保存在globals
中,名称为random
。总之:但不要忘记检查导入的结果,以防引发异常。
PyImport_ImportModule
returns the imported value. You need to save it inglobals
under the namerandom
. In summary:but don't forget to also check the result of the import in case it throws an exception.