标签: python batch-file
有没有办法直接运行脚本而不将其保存在外部" .py"档案。我正在尝试做这样的事情
python.exe "print('hello world !')"
答案 0 :(得分:5)
您可以使用-c标记。
-c
python -c "print('hello world !')"