调整 IronPython 的脚本环境以使用 itertools

发布于 2024-08-01 23:40:39 字数 227 浏览 5 评论 0原文

问题前(在 Python 中重置生成器对象)建议我使用 itertools.tee。 实际上我使用的是IronPython,在库中我们可以看到这个功能的很多用法,但没有实现(在*.py中)。 这就是为什么我很困惑如何将此包包含到我的 c# 项目中?

Question ago (Reseting generator object in Python) I was recommended to use itertools.tee. Actually I'm using IronPython, in the library we can see many usage of this feature, but there is no implementation (in *.py). That is why I'm confusing how to include this package to my c# project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿港小镇 2024-08-08 23:40:39

itertools 是一个内置模块。 在 IronPython 中,大多数内置模块位于 IronPython.Modules.dll 中。 您应该能够添加对此 DLL 的引用,并且它应该由 VS 部署到您的应用程序中。 然后 IronPython 应该会选择它并且可以从那里使用它。

itertools is a built-in module. In IronPython the majority of the built-in modules live in IronPython.Modules.dll. You should be able to just add a reference to this DLL and it should get deployed w/ your app by VS. IronPython should then pick it up and it should be availble from there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文