您好,登錄后才能下訂單哦!
這篇文章主要介紹“python怎么為list實現find方法”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“python怎么為list實現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))
缺點:代碼太多,麻煩
item_list.index(find_item) if find_item in item_list else -1
優點:簡單,明了
缺點:item_list在上面出現兩次,想想一下,如果item_list是一個比較長表達式的結果(或者函數結果),則會導致代碼過長,且會執行2次
next((item for item in item_list if item==find_item ),-1)
缺點:如果對迭代器不熟悉,不大好理解
優點:擴展性好,if后面的條件可以不只是相等,可支持更為復雜的邏輯判斷
''.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
關于“python怎么為list實現find方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。