您好,登錄后才能下訂單哦!
這篇文章主要介紹“python怎么為list實現(xiàn)find方法”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強(qiáng),希望這篇“python怎么為list實現(xiàn)find方法”文章能幫助大家解決問題。
string類型的話可用find方法去查找字符串位置:
a_list.find('a')
如果找到則返回第一個匹配的位置,如果沒找到則返回-1,而如果通過index方法去查找的話,沒找到的話會報錯。
如果我們希望在list中也使用find呢?
def list_find(item_list, find_item): if find_item in item_list: return item_list.index(find_item) return -1 item_list=[1,2,3] print(list_find(item_list,1),list_find(item_list,4))
缺點(diǎn):代碼太多,麻煩
item_list.index(find_item) if find_item in item_list else -1
優(yōu)點(diǎn):簡單,明了
缺點(diǎn):item_list在上面出現(xiàn)兩次,想想一下,如果item_list是一個比較長表達(dá)式的結(jié)果(或者函數(shù)結(jié)果),則會導(dǎo)致代碼過長,且會執(zhí)行2次
next((item for item in item_list if item==find_item ),-1)
缺點(diǎn):如果對迭代器不熟悉,不大好理解
優(yōu)點(diǎn):擴(kuò)展性好,if后面的條件可以不只是相等,可支持更為復(fù)雜的邏輯判斷
''.join(map(str, map(int, item_list))).find(str(int(True)))
簡單容易理解
deviceList[1].find('device')
List使用find方法時,報錯誤:
TypeError: 'str' does not support the buffer interface
In python 3, bytes strings and unicodestrings are now two different types. Bytes strings are b"" enclosed strings
上述語句改為:deviceList[1].find(b'device') 就好了,加了個小b
關(guān)于“python怎么為list實現(xiàn)find方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。