a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] b = [i for i in a if i % 2 != 0] print(b) 转载于:https://www.cnblogs.com/sea-stream/p/11190591.html