if (message.value[0] == "/" or message.value[0] == "\"):
do stuff.
I'm sure it's a simple syntax error, but something is wrong with my if statement. Any ideas to help out a python newbie?
Cheers
|
|
Escape the backslash:
From the documentation:
|
|||||
|
|
when you check for equality, you can also simply do this:
|
|||||||||||||||||||||
|