这种写法只返回了['HELLO'],怎么才能返回['HELLO', 'WORLD']?
def toUppers(L):
for x in L:
if isinstance(x, str):
return x.upper()
print toUppers(['Hello', 'world', 101])
def toUppers(L):
for x in L:
if isinstance(x, str):
return x.upper()
print toUppers(['Hello', 'world', 101])
2017-04-11
举报