Your question is Sort Objects by Property. 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.
Grow Therapy displays provider records in different orders, such as by name, rating, or years of experience. Write a function that returns the records sorted in ascending order by a specified property.
Implement sort_records(records, property_name), where records is a list of dictionaries and property_name is a string naming a key present in every dictionary. Return a new list ordered by that property's value. Do not modify the original list. Assume all values for the selected property are mutually comparable. If two records have equal values, preserve their original relative order.
def sort_records(records, property_name):