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