Posts by raiza • 1 point
1 post
-
-3
votes1
answer207
viewsQ: To sort the list of tuples in python by value
To sort a list of tuples by value. For example: x=[{"nome":1},{"data":4},{"dia":5}] I’d like you to stay: x=[{"dia":5},{"data":4},{"nome":1}]…