(董付國)Python 學習筆記---Python函數設計與使用(3)

5.7 案例精選web 例 5-1:編寫函數計算圓的面積。算法 >>> from math import pi as PI >>> def CircleArea(r): ... if isinstance(r,(int,float)): #確保接收的參數爲數值 ... return PI*r*r ... else: ...
相關文章
相關標籤/搜索