Discuss / Python / 列表生成器if判断

列表生成器if判断

Topic source
L = ['Hello','World',18,'Apple',None]
# print([s.lower() for s in L])


L2 = ([s.lower()for s in L if  isinstance(s,str)])
print(L2)

  • 1

Reply