以下对于Python元组tp=(10,20,30,5,60)的操作,错误的是?( )
new=list(tp))
print(new)
new=sorted(tp)
print(tp.sort())
new=list(tp)
new.sort()