#有些编程语言不够“聪明”,向这类向前引用的方式会导致报错,但Python足够“醒目”,这段代码是正确的! def next(): print('我在next()函数里...') pre() def pre(): print('我在pre()函数里...') next() 我在next()函数里... 我在pre()函数里... 相关文章: 2022-12-23 2022-01-31 2022-12-23 2021-08-24 2021-12-29 2021-07-25 2022-12-23 2022-12-23