Python 列表生成式练习

请修改列表生成式,通过添加if语句保证列表生成式能够正确的执行:

L1 = ['Hello', 'World', 18, 'Apple', None]
L2 = [x.lower() for x in L1 if isinstance(x, str)]
# 测试:
print(L2)
if L2 == ['hello', 'world', 'apple']:
    print('测试通过!')
else:
    print('测试失败!')
发布了110 篇原创文章 · 获赞 2 · 访问量 3741

猜你喜欢

转载自blog.csdn.net/qq_40041064/article/details/105097333