PyCharm 导入和代码完成

发布于 2024-10-05 01:17:07 字数 1436 浏览 3 评论 0原文

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

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

发布评论

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

评论(3

夜司空 2024-10-12 01:17:07

PyCharm 目前已经达到 2.7。您可以通过“设置”->“编辑器”下的“Kepmap”自定义键映射。我有一张支票,这个可以满足你的一些要求。

这是一个参考链接(http://www.jetbrains.com/pycharm /webhelp/configuring-keyboard-shortcuts.html)。
希望以上对您有所帮助。

PyCharm has reached to 2.7 now. you can customize your key mapping through "Kepmap" under "Settings" ->"Editor". I have a check, some of your requirement can be met by this.

Here is a reference link (http://www.jetbrains.com/pycharm/webhelp/configuring-keyboard-shortcuts.html).
Hope above helpful to you.

听你说爱我 2024-10-12 01:17:07

在这方面不是专业人士,但我认为您必须在要调用的方法之前使用模块名称。例如,要在设置模块中调用名为 doStuff 的函数,请调用 settings.doStuff()。

要直接调用方法,您需要使用“from settings import *”。但我认为这种方法是不受欢迎的。

Not a pro on this but I think you have to use the module name preceding the method you want to call. For example to call a function named doStuff in the settings module call settings.doStuff().

To call the methods directly you need to use "from settings import *". But I think this method is frowned upon.

雄赳赳气昂昂 2024-10-12 01:17:07

根据官方 PyCharm 功能页面,您按 Ctrl-Space 即可自动完成。例如,如果您输入设置,然后按 Ctrl-Space,我相信 IDE 会向您提供选项。

According to the official PyCharm feature page you press Ctrl-Space to get auto completion. So for example if you type settings and then press Ctrl-Space I believe the IDE will present you with options.

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