标签:一个 from 排列 基础 写法 不能 port 知识 基础知识
a=[2,1,3] #把a列表排序(数组,和列表能用sorted函数)(sort只能用列表)
b=sorted(a) #这个写法是正确的
b=a.sorted() #错误
a.sort() #这个写法是正确的
sort(a) #错误
python 容易混淆和基础知识
原文地址:https://www.cnblogs.com/Lyue/p/9176931.html