单项选择题

在Python语言中,下列程序段执行后,输出结果是()
s =1
for i in range(10,2,-2):
s =s *i
print(s)

A.1920
B.3840
C.1814400
D.192