Discuss / Python / 作业

作业

Topic source
L1 = ['Hello','World', 18, 'Apple', None]
l2 = [x.lower() for x in L1 if isinstance(x,str)]
print(l2)

  • 1

Reply