输出2到10之间偶数的平方

python。如何输出2到10之间的所有偶数的平方。要求用两句就能来表示

result = [i**2 for i in range(2, 11, 2)]
print(result)