Pythonic Way to Sort a List of Comma Separated Numbers

后端 未结 4 1549
不思量自难忘°
不思量自难忘° 2021-01-20 11:25

Sample Input

20, 71146620
100, 26867616
10, 02513583
10, 52811698
100, 23859051

I read it in from a file as a command line

4条回答
  •  野的像风
    2021-01-20 11:41

    import sys
    with open(sys.argv[1]) as f:
        lin = sorted([[int(j) for j in i.split(",")] for i in f])
    print lin
    

提交回复
热议问题