标签: python
大家好我和法国IOI一起锻炼,但我知道如何像列表一样提升list(input())的价值
list(input())
例如
a = list(int(input())) >>> a = 8 9 2
我想要2 8 9
答案 0 :(得分:1)
如果我理解你的问题,你可以这样做:
a = sorted(map(int, input('Enter the numbers: ').split()))