标签: python list types
说我有一个清单
some_list = ['some_word', 3543, 'pokemon']
我想知道此列表是否包含'int'数据类型。
'int'
如果这样做,它会吐出True
True
如果还有一个'int'值,我该如何找到它?