求出列表所有奇数并构造新列表

2020-01-31T11:59:17
a = [1,2,3,4,5,6,7,8,9,10]
res = [ i for i in a if i%2==1]
print(res)
当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »