怎么用Python文件调用另一个Python文件
时间: 2023-11-05 17:15:08 浏览: 82
Python实现调用另一个路径下py文件中的函数方法总结
可以使用Python的模块(module)机制来调用另一个Python文件。
假设有两个文件:`file1.py`和`file2.py`,其中`file2.py`中定义了一个函数`my_function()`,我们需要在`file1.py`中调用这个函数。
下面是具体的步骤:
1. 在`file2.py`中定义函数`my_function()`,例如:
```python
def my_function():
print("Hello, world!")
```
2. 在`file1.py`中导入`file2.py`作为一个模块,例如:
```python
import file2
```
或者只导入`file2.py`中的`my_function()`函数,例如:
```python
from file2 import my_function
```
3. 在`file1.py`中调用`my_function()`,例如:
```python
file2.my_function()
```
或者直接调用`my_function()`,例如:
```python
my_function()
```
这样就可以在`file1.py`中调用`file2.py`中的函数了。
阅读全文