为什么我的只能打印最后一个元素
def toUppers(L):
for x in L:
if isinstance(x,str):
y=x
return [y.upper()]
print toUppers(['Hello', 'world', 101])
def toUppers(L):
for x in L:
if isinstance(x,str):
y=x
return [y.upper()]
print toUppers(['Hello', 'world', 101])
2019-07-21
举报