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

In Oracle SQL Developer, there's a SQL tab for each table. This tab contains
Is there an easy way to determine in a SQL Script if the ORACLE
What is the string concatenation operator in Oracle SQL? Are there any interesting features
Is there a tool (preferably free) which will translate Oracle's PL/SQL stored procedure language
Is there an Oracle equivalent to MS SQL's full text search service? If so,
I'm trying this with Oracle SQL Developer and am on an Intel MacBook Pro.
Is there a parallel in Microsoft SQL Server (2005, preferably) for the Oracle functionality
In the free application SQL-Developer (provided by Oracle), I tried searching around for this
I am pretty well versed with SQL Server, MySQL, Oracle etc but putting these
In Oracle SQL Developer, one can list the data in a table using the

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.