Indentation error

The code is

if message.content.startswith('araara'): 

and i get an error message saying IndentationError: unindent does not match any outer undentation level.

im reaaaaally new to this so please make your answer understandable to a random person who can barely understand code

indentation, which is the spaces at the beginning of a line, are part of the foundamental syntax of python
the code you have given is not enough to see what the error is, but if you have never done so, I suggest to look up python syntax before trying to use Python in any way

the error means that the indentation you have used can’t be interpreted, it is meaningless

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.