python练习题 Posted on 2020-05-24 Words count in article: 30 | Reading time ≈ 1 python练习题 12345678a = [random.randint(10,99) for i in range(10)]b = []for item in a: if(item%2==0): continue else: b.append(item)print(b) -------------本文结束,感谢您的阅读------------- Post author: Jason Post link: https://jasonxqh.github.io/2020/05/24/python%E7%BB%83%E4%B9%A0%E9%A2%98/ Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 3.0 unless stating additionally.