I think the problem you are having here is that it is not formatted properly and your ELIF statement does not have the same indentation level, bear in mind that an ELIF statement should always be on the same level as a regular IF statement. If the IF statement is satisfied before the ELIF statement, your program will not continue to execute any further validation statement.
Recall that the ELIF statement means "else-if" meaning that if the initial IF statement is not satisfied, the program will continue to validate the variable through the ELIF statement. Treat it like it is an ELSE statement, and give it the same indentation level as an IF statement. Also remember that whitespaces are important in Python, so pay particular attention to this as well, I have included the revised code below. Do not forget to include the variable X in your ELIF statement.
So instead of this:
if x == `Lala´:
print(`lalalala.´)
elif != `lala´:
print (`lololol.´)
Do this instead:
if x == 'Lala':
print('lalalala.')
elif x != 'lala':
print ('lololol.')