python调用同一磁盘的py文件
时间: 2023-12-14 20:02:39 浏览: 154
python 在某.py文件中调用其他.py内的函数的方法
5星 · 资源好评率100%
如果你想在一个 Python 文件中调用同一磁盘上的另一个 Python 文件,可以使用 Python 的 `import` 语句。
假设你有两个文件 `file1.py` 和 `file2.py`,它们都在同一目录下。在 `file1.py` 中,你可以使用 `import` 语句来导入 `file2.py` 中的函数或变量。比如:
```python
# file1.py
import file2
# 调用 file2.py 中的函数
file2.my_function()
```
```python
# file2.py
def my_function():
print("Hello from file2.py")
```
注意,当你调用 `import file2` 时,Python 会执行 `file2.py` 中的所有代码。如果你只想导入其中的某些函数或变量,可以使用 `from ... import ...` 语句。比如:
```python
# file1.py
from file2 import my_function
# 调用 file2.py 中的函数
my_function()
```
这样就只会执行 `file2.py` 中与 `my_function` 相关的代码了。
阅读全文