so I have this (very stupid for most people I'd assume) question: I'm trying to modify a small template I found online and at one point they give the order to sort the list called movie
by rating in descending order via this command:
recently_added['movie'].sort(key=lambda m: m['rating'], reverse=True)
I'd like to sort this list alphabetically A to Z myself, but for the life of me can't figure out how to do it! Is it possible? I think I should be using .sorted() instead of .sort() but I'm not sure.
Thank you very much!