从索引中排序列表

时间:2017-08-22 00:44:07

标签: python python-3.x list sorting

我有一个列表,其中包含从文本文件输入的某些值。例如,假设列表是

a = ["Hello 2476 hey!", "  hey 1534     hello!", "     2323"]

我希望从第6个索引到第10个索引排序。即使经过很多搜索,我也无法弄清楚如何做到这一点。感谢所有帮助!

1 个答案:

答案 0 :(得分:0)

a = ['hack', 'the' , 'jack', 'with' , 'a' , 'mac' , 'on' , 'the' , 'last', 'monday']

result = a[:6]+sorted(a[6:10])
print(result)