python调用其他py文件
时间: 2023-09-08 15:12:13 浏览: 140
要在一个Python文件中调用另一个Python文件,可以使用`import`语句。假设要调用名为`other_file.py`的文件中的函数或变量,可以在当前文件中使用以下语句:
```python
import other_file
```
这将导入`other_file.py`文件中的所有内容。要使用`other_file.py`中的函数或变量,可以使用以下语法:
```python
other_file.function_name()
other_file.variable_name
```
如果只需要使用`other_file.py`中的特定函数或变量,可以使用如下语句:
```python
from other_file import function_name, variable_name
```
这将只导入`other_file.py`中指定的函数或变量。要使用导入的函数或变量,可以使用以下语法:
```python
function_name()
variable_name
```
注意,在调用另一个Python文件之前,确保它与当前文件在同一目录下或在Python路径上可用。
阅读全文