Given a list of dictionaries like this:
x = [
{'name':'a', 'student': 1 , 'age':19},
{'name':'b', 'student': 0 , 'age':10}
]
I want to sort it by age only if student is equal to 1. Can I somehow put that if in the following statement?
sortedlist = sorted(x, key=lambda k: k['age'])
Thanks,