使用内建的isinstance
函数可以判断一个变量是不是字符串:
# -*- coding: utf-8 -*- L1 = ['Hello', 'World', 18, 'Apple', None] L2 = [s.lower() for s in L1 if isinstance(s, str)]
L2 的分解: [s.lower() for s in L1 if isinstance(s,str) ], 便于理解用
使用内建的isinstance
函数可以判断一个变量是不是字符串:
# -*- coding: utf-8 -*- L1 = ['Hello', 'World', 18, 'Apple', None] L2 = [s.lower() for s in L1 if isinstance(s, str)]
L2 的分解: [s.lower() for s in L1 if isinstance(s,str) ], 便于理解用