def toUppers(L): return [x.upper() for x in L if isinstance(x,str)=True]print toUppers(['Hello', 'world', 101]) 查看完整描述