使用 python 2.7,我想要执行以下操作:
$> python "import Tkinter; Tkinter.tk(); etc... "
但 python 似乎不接受这种方式的脚本。我不想创建 .py 文件。
有没有办法直接在命令行上给出 python 命令?
答案1
您想要运行:
python -c "…"
该-c
参数告诉 Python 解释器将参数值作为命令运行。
$ python -c "print 'foo'; print 'bar'"
foo
bar