shell脚本命令 运行python文件&python命令行运行python代码
时间: 2023-12-10 20:05:28 浏览: 133
解决python便携版无法直接运行py文件的问题
1. 运行 Python 文件:
在 shell 脚本中运行 Python 文件,可以使用以下命令:
```
python /path/to/your/python/file.py
```
其中,`/path/to/your/python/file.py` 是你的 Python 文件所在的路径。
2. 在命令行中运行 Python 代码:
在命令行中运行 Python 代码,可以使用以下命令:
```
python -c "print('Hello, world!')"
```
其中,`"print('Hello, world!')" `是你要运行的 Python 代码。
阅读全文