x.upper()放后面为什么不行
def toUppers(L): return [x.upper()for x in L if isinstance(x,str) ] print (toUppers(['Hello', 'world', 101])) 这个x.upper()放前面和放后面的区别是什么???
def toUppers(L): return [x.upper()for x in L if isinstance(x,str) ] print (toUppers(['Hello', 'world', 101])) 这个x.upper()放前面和放后面的区别是什么???
2019-11-11
举报