>>> x = 5
>>> y = 3
>>> if x == y:
print("Yes")
else:
SyntaxError: unindent does not match any outer indentation level
>>>
I keep having this problem. I am new into Python but I want to learn it seriously and I am struggling with this error. I made research about indentation and tried to review my few lines of code but with no succes. I cannot understand why it keeps appearing as I tried not to mix tabs and spaces. Thanks in advance for help! (I am currently running Python 3.6.4)