I have a (Python) dictionary looking like this:
[
    {
        "data": "somedata1",
        "name": "prefix1.7.9"
    },
    {
        "data": "somedata2",
        "name": "prefix1.7.90"
    },
    {
        "data": "somedata3",
        "name": "prefix1.1.1"
    },
    {
        "data": "somedata4",
        "name": "prefix4.1.1"
    },
    {
        "data": "somedata5",
        "name": "prefix4.1.2"
    },
    {
        "data": "somedata5",
        "name": "other 123"
    },
    {
        "data": "somedata6",
        "name": "different"
    },  
    {
        "data": "somedata7",
        "name": "prefix1.7.11"
    },
    {
        "data": "somedata7",
        "name": "prefix1.11.9"
    },
    {
        "data": "somedata7",
        "name": "prefix1.17.9"
    }   
]
Now I want to sort it by "name" key. If there postfix are numbers (splitted by 2 points) I want to sort it numerical. e.g. with a resulting order:
different
other 123
prefix1.1.1
prefix1.1.9
prefix1.7.11
prefix1.7.90
prefix1.11.9
prefix1.17.9
prefix4.1.1
prefix4.1.2
Do you have an idea how to do this short and efficient? The only idear I had, was to build a complete new list, but possibly this could also be done using a lambda function?
 
     
     
     
    