#有些編程語言不夠“聰明”,向這類向前引用的方式會導致報錯,但Python足夠“醒目”,這段代碼是正確的!
def next():
print('我在next()函數里...')
pre()
def pre():
print('我在pre()函數里...')
next()
我在next()函數里...
我在pre()函數里...
