1. myList = [i*i for i in range(1, 11) if i % 2 == 0]
    2. print(myList)
    3. # 输出
    4. [4, 16, 36, 64, 100]