I'm in the following situation:
title_value = clean_result['format']['tags'].get('title')
... sometimes title is pure uppercase. Can I handle this more efficiently than using the if-else clause here?
Something like this:
title_value = clean_result['format']['tags'].get('title', 'TITLE')