我需要对表格的第一列进行排序。它看起来像
6000 799
7000 352
8000 345
9000 234
10000 45536
11000 3436
1000 342
2000 123
3000 1235
4000 234
5000 233
我希望第一列按升序排列,但它仅按第一个数字排序,而不是整列的值,即
1000 342
10000 45536
11000 3436
2000 123
但我想要
1000 342
2000 123
3000 1235
etc
目前正在尝试:
SortInputfile=open("InterpBerg1","r")
line=SortInputfile.readlines()
line.sort()
map(SortOutputfile.write, line)