You need to sort first, then call dict to convert sorted tuple:
dict(
sorted(ROOM_CATEGORIES, reverse=True)
)
solved Dictionaries in specific format
You need to sort first, then call dict to convert sorted tuple:
dict(
sorted(ROOM_CATEGORIES, reverse=True)
)
solved Dictionaries in specific format