有什么办法可以使此列表排序器更短?

时间:2019-02-14 09:35:40

标签: python-3.x

我想输入5个名称,然后手动对其进行排序。

有没有比这更短的解决方案了?

{{1}}

1 个答案:

答案 0 :(得分:0)

在python中,您可以执行以下操作:

L =  input("Enter names separated by space: ")
L =   L.split(",")
# sort the list
L.sort()