在Python中要定義函式,是使用def 來定義,例如,以下是個求最大公因數的函式定義: def gcd(m, n): if n == 0: return m else: return gcd(n, m % n) print(gcd(20, ...
確定! 回上一頁