gpt4 book ai didi

python - 获取列表中字符串类型的最后一个元素

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:04 27 4
gpt4 key购买 nike

假设我有一个不同类型的列表:

[7, 'string 1', 'string 2', [a, b c], 'string 3', 0, (1, 2, 3)]

是否有一种 Pythonic 方式返回“string 3”?

最佳答案

如果您有给定的类型,您可以使用多种理解来获得您需要的。

[el for el in lst if isinstance(el, given_type)][-1]
# Gives the last element if there is one, else IndexError

next((el for el in reversed(lst) if isinstance(el, given_type)), None)
# Gives the last element if there is one, else None

如果这是你经常做的事情,你可以把它分解成一个函数:

def get_last_of_type(type_, iterable):
for el in reversed(iterable):
if isinstance(el, type_):
return el
return None

关于python - 获取列表中字符串类型的最后一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29950493/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com