溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python怎么為list實現(xiàn)find方法

發(fā)布時間:2022-05-30 16:38:27 來源:億速云 閱讀:410 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“python怎么為list實現(xiàn)find方法”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強(qiáng),希望這篇“python怎么為list實現(xiàn)find方法”文章能幫助大家解決問題。

如何為list實現(xiàn)find方法

string類型的話可用find方法去查找字符串位置:

a_list.find('a')

如果找到則返回第一個匹配的位置,如果沒找到則返回-1,而如果通過index方法去查找的話,沒找到的話會報錯。

如果我們希望在list中也使用find呢?

方法1:獨(dú)立函數(shù)法

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):代碼太多,麻煩

方法2:if三元表達(dá)式(本質(zhì)同上)

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次

方法3:next(利用迭代器遍歷的第二個參數(shù))

next((item for item in item_list if item==find_item ),-1)

缺點(diǎn):如果對迭代器不熟悉,不大好理解

優(yōu)點(diǎn):擴(kuò)展性好,if后面的條件可以不只是相等,可支持更為復(fù)雜的邏輯判斷

方法4:list元素bool類型

''.join(map(str, map(int, item_list))).find(str(int(True)))

簡單容易理解

Python List find方法報錯

TypeError: 'str' does not support the buffer interface

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)。

向AI問一下細(xì)節(jié)

免責(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)容。

AI