第18143题 单选
以下Python代码执行后的输出结果是?
yz=(1,5,7,3,9)
list1=sorted(yz)
print(list1)
A

报错

B

1, 3, 5, 7, 9

C

(1, 3, 5, 7, 9)

D

[1, 3, 5, 7, 9]