题解 | #被5整除的数字#

被5整除的数字

https://www.nowcoder.com/practice/ea64853bae7045f5a2fb1feaf64832dd

my_list = [i for i in range(1,51) if i % 5 == 0]
for i in my_list:
    print(i)

Learn this way of writing the for loop, and put the judgment condition at the end. if directly use i % 5 == 0 for i in range(1,51)

the output will be True False False ...

全部评论

相关推荐

头像
11-27 14:28
长沙理工大学
刷算法真的是提升代码能力最快的方法吗? 刷算法真的是提升代码能力最快的方法吗?
牛牛不会牛泪:看你想提升什么,代码能力太宽泛了,是想提升算法能力还是工程能力? 工程能力做项目找实习,算法也分数据结构算法题和深度学习之类算法
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务