# 推导式写法 [-(i * 2 + 1) if i % 2 else (i * 2 + 1) for i in range(10)]
# 改进写法,这下没有重复了吧 [i if i % 4 == 1 else -i for i in range(1, 10, 2)]