为什么我这个程序不能输出 ['HELLO','WORLD',101] ?
def toUppers(L):
for a in L:
if isinstance(a,str):
return a.upper()
else:
return a
print toUppers(['Hello', 'world', 101])
def toUppers(L):
for a in L:
if isinstance(a,str):
return a.upper()
else:
return a
print toUppers(['Hello', 'world', 101])
2019-04-01
举报