我们可以在Python3中按升序排列一个列表(input())

时间:2018-03-17 15:13:10

标签: python

大家好我和法国IOI一起锻炼,但我知道如何像列表一样提升list(input())的价值

例如

a = list(int(input()))
>>> a = 8 9 2

我想要2 8 9

1 个答案:

答案 0 :(得分:1)

如果我理解你的问题,你可以这样做:

a = sorted(map(int, input('Enter the numbers: ').split()))