我想在我想传递参数的地方尝试简单的Python
代码。test.py
import sys
result = 3 * 3 * <parameter>
print(result)
当我运行Python
代码时,我想将值作为3
输入参数传递,以便最后得到结果27
。在传递参数中的值后,我可以运行 python 代码。例如,我可以运行下面的 python 代码。可以用 Python 做吗?
test.py 3
我想在我想传递参数的地方尝试简单的Python
代码。test.py
import sys
result = 3 * 3 * <parameter>
print(result)
当我运行Python
代码时,我想将值作为3
输入参数传递,以便最后得到结果27
。在传递参数中的值后,我可以运行 python 代码。例如,我可以运行下面的 python 代码。可以用 Python 做吗?
test.py 3