想返回list中的字符串只有首字母大写,为什么不行
def toUppers(L):
return [x.upper(:1)+ x(1:) for x in L if isinstance(x,str)]
print toUppers(['Hello', 'world', 101])
def toUppers(L):
return [x.upper(:1)+ x(1:) for x in L if isinstance(x,str)]
print toUppers(['Hello', 'world', 101])
2017-11-01
举报