Python的字串比較與Java類似,也需要一個比較函數,而不能用==符號。用cmp()方法來比較兩個對象,相等返回0 ,前大於後,返回1,小於返回-1.
a = "abc" b = "abc" c = "aba" d = "abd" print cmp(a,b) print cmp(a,c) print cmp(a,d) //返回 0 1 -1
Python3.X 的版本中已經沒有cmp函數,如果你需要實現比較功能,需要引入operator模組,適合任何對象,包含的方法有:
operator.lt(a, b) operator.le(a, b) operator.eq(a, b) operator.ne(a, b) operator.ge(a, b) operator.gt(a, b) operator.__lt__(a, b) operator.__le__(a, b) operator.__eq__(a, b) operator.__ne__(a, b) operator.__ge__(a, b) operator.__gt__(a, b)
實例
>>> import operator >>> operator.eq('hello', 'name'); False >>> operator.eq('hello', 'hello'); True
注意:python3中使用==可進行比較兩個字串,與java中的==代表相等的意義不同。
更多Python相關技術文章,請造訪Python教學欄位學習!
以上是python中字串怎麼比較大小的詳細內容。更多資訊請關注PHP中文網其他相關文章!