I\'m looking at some Python code which used the @
symbol, but I have no idea what it does. I also do not know what to search for as searching Python docs or Goo
To say what others have in a different way: yes, it is a decorator.
In Python, it's like:
This can be used for all kinds of useful things, made possible because functions are objects and just necessary just instructions.