Your question is Lambda Function Example. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Chubb Claims receives claim records that must be displayed in a consistent priority order. Write a Python function that sorts claims by descending severity, then by ascending claim_id when severities are equal.
Use Python's sorted function with a lambda expression as the sorting key. Do not modify the input list.
Implement sort_claims(claims).
claims is a list of dictionaries.claim_id, a non-empty string, and severity, an integer from 1 through 5.A lambda expression should produce a compound sort key that represents both ordering rules.
def sort_claims(claims):