This is the code I\'m confused with:
starts_with_J = lambda x: True if x.startswith(\'J\' or \'1\') else False print(starts_with_J(\'1Ji\'))