Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 163467
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:34:21+00:00 2026-05-11T11:34:21+00:00

In Oracle SQL there is a feature to order as follow: order by decode(carrot

  • 0

In Oracle SQL there is a feature to order as follow:

order by decode('carrot' = 2                ,'banana' = 1                ,'apple' = 3) 

What is the best way to implement this in python?

I want to be able to order a dict by its keys. And that order isn’t necessarily alphabetically or anything – I determine the order.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T11:34:22+00:00Added an answer on May 11, 2026 at 11:34 am

    You can’t order a dict per se, but you can convert it to a list of (key, value) tuples, and you can sort that.

    You use the .items() method to do that. For example,

    >>> {'a': 1, 'b': 2} {'a': 1, 'b': 2} >>> {'a': 1, 'b': 2}.items() [('a', 1), ('b', 2)] 

    Most efficient way to sort that is to use a key function. using cmp is less efficient because it has to be called for every pair of items, where using key it only needs to be called once for every item. Just specify a callable that will transform the item according to how it should be sorted:

    sorted(somedict.items(), key=lambda x: {'carrot': 2, 'banana': 1, 'apple':3}[x[0]]) 

    The above defines a dict that specifies the custom order of the keys that you want, and the lambda returns that value for each key in the old dict.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there an easy way to determine in a SQL Script if the ORACLE
Is there any advanced Oracle SQL methods to solve this kind of situation? Simplified:
Is there a way to extract timezone information directly from an oracle.sql.TIMESTAMPTZ object (selected
In Oracle SQL Developer, there's a SQL tab for each table. This tab contains
Is there a built-in feature, or way to simulate RLS(Row Level Security) in SQL
There must be something I'm missing here. I have this nice, pretty Oracle SQL
New to SQL. Using oracle sql developer Version 3.1.07. Is there any way to
So here's my question (i'm using Oracle SQL by the way) I have 3
It appears that there is a limit of 1000 arguments in an Oracle SQL.
This is probably an oldie-but-goodie. I am using System.Data.Common for an interchangeable Oracle/SQL Server/SQLite

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.