gpt4 book ai didi

python - 从 pycharm 控制台运行模块

转载 作者:IT老高 更新时间:2023-10-28 20:43:47 24 4
gpt4 key购买 nike

我是 python 和 pycharm 的新手,如果可能的话,我想从 pycharm 控制台以与从 IDLE 相同的方式运行模块。

我们的想法是创建简单的函数并使用控制台“实时”测试它们。

...你是如何在 pycharm 中做到这一点的?

最佳答案

使用 pycharm 运行 python 脚本非常简单,引用自 docs :

To run a script with a temporary run/debug configuration Open the desired script in the editor, or select it in the Project tool window. Choose Run on the context menu, or press Ctrl+Shift+F10. So doing, a temporary run/debug configuration is created on-the-fly.

此外,pycharm 中还有一个“Python 控制台”:见 documentation .

更新:这是一个例子。

假设您有一个名为 test_module.py 的 python 模块:

def a(*args, **kwargs):
print "I'm function a"

def b(*args, **kwargs):
print "I'm function b"

然后,在 pycharm 的“Python 控制台”中你可以这样做:

>>> from test_module import *
>>> a()
I'm function a
>>> b()
I'm function b

如果您需要执行现有代码的一部分,可以使用 Execute Selection in Console功能:选择代码片段->右键单击->“在控制台中执行选择”。

关于python - 从 pycharm 控制台运行模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16874046/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com