我有一个Document对象,它的类型是"属性。我需要循环Document和每个文档的列表。type == "OTHER"我必须取列表中的最后一个元素也就是" mic "document.type。我怎样才能轻松地做到这一点?
我已经反转列表并循环遍历它如果新元素的类型不是特定类型之一,则将其视为其他类型并中断循环,因为它最初是该类型的最后一个
types = [float, str]
texts = ['hello', 3, 2.5, 'world', 7, 8, 1.4]
texts = texts[::-1]
for i in texts:
ty = type(i)
if ty in types:
pass
else:
other = ty
print(i)
break