Discuss / Python / 用三目运算符就可以字符小写和其他数据类型一起输出了

用三目运算符就可以字符小写和其他数据类型一起输出了

Topic source

陈日仙

#1 Created at ... [Delete] [Delete and Lock User]
[x.lower() if isinstance(x,str) else x for x in L1]

三目运算符:

true_part if condition else false_part

http://wangye.org/blog/archives/690/


  • 1

Reply