单项选择题

运行以下代码后,输出的结果是?()
t=(2,4,6,1,3)
s=sorted(t)
print(s)

A.(6,4,3,2,1)
B.[6,4,3,2,1]
C.(1,2,3,4,6)
D.[1,2,3,4,6]