Python 运行脚本
时间: 2023-02-07 09:47:38 浏览: 37
Python脚本
Python 运行脚本的方法有以下几种:
1. 在命令行中使用 Python 解释器来执行脚本,例如:
```
$ python script.py
```
2. 在脚本的第一行添加执行脚本的命令,例如:
```python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
print("Hello, world!")
```
然后,使用 chmod 命令给脚本赋予可执行权限,然后就可以像执行其它可执行程序一样来运行脚本了:
```
$ chmod +x script.py
$ ./script.py
```
3. 在 Python 的交互模式中执行脚本,例如:
```
$ python
>>> exec(open("script.py").read())
```
4. 在 Python 代码中使用函数 `run()` 来执行脚本,例如:
```python
import runpy
runpy.run_path("script.py")
```
希望这些方法能帮助你。
阅读全文