标签: python list sorting
a=[8,2,15,6,1] a = a.sort() print a
为什么打印None?你能详细说明所有功能吗?
None
答案 0 :(得分:6)
sort()和sorted()不同:
sort()
sorted()
有关详细信息,请参阅here。