怎么样在python函数中再写一个函数
时间: 2024-04-29 09:25:11 浏览: 110
python3 实现函数写文件路径的正确方法
可以使用嵌套函数的方式,在一个函数中定义另一个函数。例如:
```python
def outer_function():
def inner_function():
print("This is the inner function.")
print("This is the outer function.")
inner_function()
outer_function()
```
输出结果为:
```
This is the outer function.
This is the inner function.
```
阅读全文