gpt4 book ai didi

python - 如何使用变量在 Spyder 控制台中执行 Python 3.3 脚本?

转载 作者:太空狗 更新时间:2023-10-29 17:43:23 25 4
gpt4 key购买 nike

如何在 Spyder 控制台中执行 Python 3.3 脚本,并且它有变量?

我的示例代码(C:/test/myfile.py)是

from sys import argv
script, first, second, third = argv
print("The script is called:", script)
print("Your first variable is:", first)
print("Your second variable is:", second)
print("Your third variable is:", third)

我试过 exec(open("C:\test\myfile.py").read()) - 我得到的错误是“ValueError:需要超过 1 个值才能解包。我想提供变量first = "1st", second = "2nd", third = "3rd"。如何编写 exec() 以便它可以处理输入?

我正在使用 Python 3.3,64 位安装,Windows 操作系统,安装:WinPython。

最佳答案

你该走了

运行 > 每个文件的配置

(或按 Ctrl+F6)并在出现的对话框中您需要检查

命令行选项

并在那里写(例如)

1 2 3

关闭此对话框并按 F5 后,您将看到预期的输出。

注意:请记住,这些命令行选项在 Spyder 重新启动之间保存为文件运行配置的一部分,因此如果你想更改它们,你需要按 Ctrl+F6 再次。

关于python - 如何使用变量在 Spyder 控制台中执行 Python 3.3 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18502876/

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