我想简单地执行 Python 命令,而无需编写脚本或输入解释器。有没有一种方法可以让我运行类似的东西:
python --execute "pow(12.31351,2)"
并简单地打印结果吗?
答案1
你可以使用-c
参数,例如python -c "print 123"
,参见python --help
usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
-c cmd : program passed in as string (terminates option list)