摘要: 一、列表推导式 例一:30以内所有能被3整除的数 multiples = [i for i in range(30) if i % 3 is 0] print(multiples) # Output: [0, 3, 6, 9, 12, 15, 18, 21, 24, 27] 例二:30以内所有能被3 阅读全文
posted @ 2018-02-07 16:04 三师弟悟净 阅读(212) 评论(0) 推荐(0) 编辑