Hy guys, i have a question about this code in python.
xs = {\'a\': 4, \'b\': 3, \'c\': 2, \'d\': 1}
xm = sorted(xs.items(), key = lambda x : x[1])
print(xm)