第11809题 单选题
对于Python元组tp=(10,20,30,5,60),下列操作错误的是
A
new = list(tp)
print(new)
B
new = sorted(tp)
print(new)
C
print(tp.sort())
D
new = list(tp)
new.sort()
print(new)
程序运行统计
暂无判题统计