第16060题 单选
Python执行list(range(1,3))后print(l)的输出结果是?
l = list(range(1,3))
print(l)
A

[0,1,2]

B

{0,1,2}

C

[1,2]

D

{1,2}