This can be expanded further to show some features in the conditionals section. E.g., ``` for person in people: if person['occupation'] == 'System Administrator' and person['age'] < 30: (do something here ...) ``` ... or something like that!