python中函数调用函数怎么写
时间: 2024-01-21 09:02:11 浏览: 153
python怎么调用自己的函数
在Python中,函数调用函数可以通过以下方式实现:
```
def function1():
print("This is function1.")
def function2():
print("This is function2.")
function1() # 调用function1
function2() # 调用function2
```
在上面的例子中,`function2` 调用了 `function1`。当 `function2` 被调用时,它会先打印 "This is function2.",然后调用 `function1`,在屏幕上打印 "This is function1."。
注意,当 `function1` 被调用时,它会在 `function2` 中执行,然后再返回到 `function2` 继续执行。
阅读全文