为什么输出结果不对 有能解释的大能么
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])
2019-07-20
举报