I'm wondering if there is anyway around the typical limitations on python function names (alphanumerics etc).
Typical function application proceeds like this myFunction(arg1,arg2). But we know there are exceptions, such as functions that use infix notation. As example, consider 3 + 5. Here, the addition function uses infix notation, and also has a rather special name +.
My question is if there is any way (perhaps with aliases) to give a function a name that is a special character such as + or ~. This possibility obviously exists in core python, but is there a way utilize this with defined functions? Thanks
+is syntax which maps to theobject.__add__method. You can't create new syntax, you can only create new objects.+and wondering if I could utilize something similar.