I just started learning to programme with Python. I have just tried to use the if elif and else statement but my computation kept telling me there is an indentation error.
I am quite confused as this is a really simple programme. It seems like when I put more than 2 lines of code after the if statement, there will be a problem. Could you please help me with this?
Thank you soooo much
x = raw_input ('Give me a number ')
if x > 100:
print 'Big'
print 'number'
print 'hahaha'
elif x == 100:
print 'yeah'
else:
print '...'