df.apply pandas code example
Example 1: python pandas apply to one column
df['a'] = df['a'].apply(lambda x: x + 1)
Example 2: lambda in pandas
Series.apply(lambda x: x**2)
#x represent the cell value and x**2 is your function
df['a'] = df['a'].apply(lambda x: x + 1)
Series.apply(lambda x: x**2)
#x represent the cell value and x**2 is your function