For example I lets say I have the dataframe df with column A containing ints.
If I wanted to change all the values in A so that they all had 1 added to them I would write something like this:
df["A"] = df["A"] + 1
Is there a way to write this so I don't have to write df["A"] twice?