📜  python triée plusieurs fois avec virgule - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:10.706000             🧑  作者: Mango

代码示例1
lst = []
while True:
    s = input().split(',')
    if not s[0]:
        break
    lst.append(tuple(s))

lst.sort(key=lambda x: (x[0], x[1], x[2]))
print(lst)