标签: python python-3.x sorting
我有一个list = [3,25,1]的列表 但是当我使用list.sort()时,输出是[1,25,3] 我想它把它作为一个字符串,并按他们的第一个字符排序...... 我如何按int顺序对它们进行排序? 它是在python 3