In Python please:
Complete the if-else statement to print 'LOL means laughing out loud' if user_tweet contains 'LOL'.
# Sample output with input: 'I was LOL during the whole movie!'
# LOL means laughing out loud.
user_tweet = input()
''' Your solution goes here '''
print('LOL means laughing out loud.')
else:
print('No abbreviation.')