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
@
@ symbol is also used to access variables inside a plydata / pandas dataframe query, pandas.DataFrame.query. Example:
pandas.DataFrame.query
df = pandas.DataFrame({'foo': [1,2,15,17]}) y = 10 df >> query('foo > @y') # plydata df.query('foo > @y') # pandas