# create function find_longest here...
print(find_longest('To be or not to be.'))
# expected: 'not'
print(find_longest('The best way to predict the future is to invent it.'))
# expected: 'predict'
Python
Setting up Python environment...
Output