如何在 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 个值来解压。我想先提供变量 =” 1st", second = "2nd", third = "3rd"。如何编写 exec() 以便它可以处理输入?
我正在使用 Python 3.3,64 位安装,Windows 操作系统,安装:WinPython。