Discuss / Python / 交作业

交作业

Topic source
    L1 = ['Hello', 'World', 18, 'Apple', None]
    s = str
    L2 = [s.lower() for s in L1 if isinstance(s, str)]
    print(L2)
    L3 = [s.lower() if isinstance(s,str) else s for s in L1]
    print(L3)

  • 1

Reply