0
我有一個簡單的Python 2.7版的功能,稱之爲det2x2在下面的代碼所示:Python函數的返回值應該是方程還是局部變量?
def det2x2(a, b, c, d):
return a*d - b*c
它是更Python或建議去做,而不是這樣?
def det2x2(a, b, c, d):
result = a*d - b*c
return result
我意識到,對於這個簡單的函數,它可能並不重要,但對於更精細的計算它可能。