python-3.x 这个程序对我不起作用,我必须做什么修改:L = [1.5,“hi”,3,True],如果在L == float中为x键入(x):打印(x,L.索引(x))

vltsax25  于 2022-12-14  发布在  Python
关注(0)|答案(1)|浏览(92)

这个程序对我不起作用,我必须做什么修改:L = [1.5,“hi”,3,True],如果在L == float中为x键入(x):打印(x,L.索引(x))

9rbhqvlz

9rbhqvlz1#

L=[1.5,"hi",3,True] 
for x in L:
    if type(x)==float:
        print(x, L.index(x))

输出:-

1.5 0

已更新查询..!

#列出理解

L=[1.5,"hi",3,True] 
print([[x,L.index(x)] for x in L if type(x)==float])

输出:-

[[1.5, 0]]

相关问题