课程
/后端开发
/Python
/初识Python
如图,这样写的话怎么修改才能实现大写输出啊
2019-06-12
源自:初识Python 10-3
正在回答
在isinstance(i,str)判断i为字符串时,可以使用upper函数将字符串全部转换为大写
具体如下代码:
def toUppers(L):
l=[]
for i in L:
if isinstance(i,str):
l.append(i.upper()) #将i添加到列表时,强制转换
return l
print toUppers(['Hello', 'world', 101])
额,打错了 是i.upper()
return l.upper() 就可以了
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序