Discuss / Python / 作业

作业

Topic source

L = ['Hello', 'World', 18, 'Apple', None] m = [s.lower() for s in L if isinstance(s,str)] print(m)


  • 1

Reply