if [conditional]:
program
else:
program_alternative
How can I redefine the symbol I use for if? What if I would like to use a unicode character -- is this allowable in python? e.g. ≸ in the place of the string "if".
Is there any way to operate on this syntax? Can I say something like type(if) or perhaps type(__if__)?
I know that python permits variables to have unicode names but what if I especially want to make my code unreadable.
Or, is this something done by the parser that cannot be influenced?