Skip to content

Instantly share code, notes, and snippets.

@ibeauregard
Last active June 12, 2021 15:18
Show Gist options
  • Save ibeauregard/1dcd5e8b634b89c14e1ef04e6f1e6589 to your computer and use it in GitHub Desktop.
Save ibeauregard/1dcd5e8b634b89c14e1ef04e6f1e6589 to your computer and use it in GitHub Desktop.
def order_by(rows, key):
rows.sort(key=lambda row: converted(row[key.index]),
reverse=not key.ascending)
return rows
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment