python 函式程式設計的位置引數、預設引數、關鍵字引數以及函式的遞迴
阿新 • • 發佈:2022-05-04
首先對於函式呼叫:
!usr/bin/env python
_*_ coding:utf-8 _*_
def AQA(INPUT):
if INPUT=='hello world':
#在輸入正確的情況下,不想讓其呼叫hello_again()函式,
#法一: 可利用返回值(return)進行判斷
#法二:可將函式放在else下執行
print('你好,世界')
return 'right'
else:
print('世界毀滅了')
return 'wrong' #如果retrun放在世界毀滅的前面則不會執行print
#hello_again()#法二
def hello_again():
print('大不了從頭再來')
if __name__=='__main__':
INPUT=input('