gpt4 book ai didi

python - 从 Python 提示符运行 Python 脚本,以便将变量加载到交互式环境中

转载 作者:行者123 更新时间:2023-11-28 20:49:53 24 4
gpt4 key购买 nike

假设我有一个(有点毫无意义的)Python 脚本

#!/usr/bin/python

a = 5

有没有办法从交互式提示运行这个脚本,这样在运行后如果我输入 a 我得到

>>> a
5

不是

>>> a
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'a' is not defined

更一般地说,如果我的脚本通过一系列步骤计算出一些东西,有没有办法在脚本完成后访问这些东西(以相同的方式)。

最佳答案

导入:

from yourscriptname import a

python 中的每个 .py 文件都是一个模块,您可以简单地导入它。如果文件名为 foo.py,则导入 foo

关于python - 从 Python 提示符运行 Python 脚本,以便将变量加载到交互式环境中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13480490/

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