Discuss / Python / 交作业:

交作业:

Topic source

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

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


  • 1

Reply