求教为什么不能这样写?
def toUppers(L): for x in L if isinstance(x, str): return x.upper() print oUppers(['Hello', 'world', 101])
总是显示第二行错误,无法运行。为什么呢?
def toUppers(L): for x in L if isinstance(x, str): return x.upper() print oUppers(['Hello', 'world', 101])
总是显示第二行错误,无法运行。为什么呢?
2019-07-08
举报