Python 模块如何工作
我想知道Python 模块是如何工作的? 假设我想让我的 Python 程序打包一些自定义模块,我应该将它们放在与主 .py 文件相关的位置?(如果不使用通常的方式,我将如何加载它们)
I was wondering how do Python modules work?
Say I want to make my Python program some custom modules to package with it, where would I put them in relation to the main .py file?(and how would I load them if not using the usual way)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果该模块特定于您的程序,您可以将其放入与主脚本相同的目录中。来自文档:
我建议您阅读整个模块教程。它很短并且有很多有用的信息。
If the module is specific to your program, you can put into the same directory as the main script. From the documentation:
I would recommend that you read the entire tutorial on modules. It's pretty short and has a lot of useful info.