标签: python-3.x
我想输入5个名称,然后手动对其进行排序。
有没有比这更短的解决方案了?
{{1}}
答案 0 :(得分:0)
在python中,您可以执行以下操作:
L = input("Enter names separated by space: ") L = L.split(",") # sort the list L.sort()