Discuss / Python / 交作业

交作业

Topic source

L1 = ['Hello', 'World', 18, 'Apple', None]

L2 = [x.lower() for x in L1 if isinstance(x, str)]


  • 1

Reply