Python Pandas Sumulative Colom

# Using the pandas "cumsum()" function
df['new_column'] = df.column_name.cumsum()
Kwams