课程
/后端开发
/Python
/初识Python
def toUppers(L):
for x in L:
if isinstance(x,str):
print(x.upper())
print toUppers(['Hello', 'world', 101])
2018-07-29
源自:初识Python 10-3
正在回答
你这toUppers逐个取L中的各个元素,如果是字符就全变成大写,否则返回None,所以101返回了None,被打印出来了
toUppers(L没有返回值,所以最后一句print toUppers(['Hello', 'world', 101])相当于print None
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序