为了账号安全,请及时绑定邮箱和手机立即绑定

关于条件过滤

代码可以这么写吗

def toUppers(L):

Y = []

for x in L if isinstance(x, str):

Y.append(x.upper())

    return Y



print toUppers(['Hello', 'world', 101])


应该怎么改?

正在回答

1 回答

不可以,应该:

def toUppers(L):

    Y = []

    for x in L:

        if isinstance(x, str):

            Y.append(x.upper())

    return Y

print toUppers(['Hello', 'world', 101])


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758620    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

关于条件过滤

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信