python中函数里调用外部函数
时间: 2023-11-15 16:04:33 浏览: 136
python 实现调用函数
在Python中,函数可以调用其他函数,包括在函数外定义的函数。这是因为在Python中,函数定义是全局的,可以在任何地方访问。下面是一个示例代码,演示了如何在函数内调用外部函数:
```python
def outer_function():
print("This is outer function.")
def inner_function():
print("This is inner function.")
outer_function()
inner_function()
```
输出结果为:
```
This is inner function.
This is outer function.
```
在上面的代码中,`inner_function` 是在函数内部定义的,它调用了在函数外定义的 `outer_function`。当 `inner_function` 被调用时,它会输出一条消息并调用 `outer_function`,从而输出另一条消息。
阅读全文