运行下方代码段,则a的取值范围是( )。
import random
a = abs(random.choice([2,4]))
2 <= a <= 4
2 <= a < 4
a = 2或 a = 3
a = 2或 a = 4