今天來分享一個python中非常有用而且非常簡單的函數cmp,從拼寫上大家可能猜到了,這是一個比較函數,嗯,是的,它的返回值只有三個,正數,0,負數,下面來看看:
cmp(x, y)
中文說明:比較兩個物件x和y,如果x y,傳回正數。
版本:此函數只有在python2中可用,而且在python2所有版本中都可用。但是在python3中該函數已經被刪減掉,這點要特別注意。
英文說明:Compare the two objects x and y and return an integer according to the outcome. The return value is negative if x y.