df.mean(axis=1), to get the compute the mean of all columns code example
Example 1: mean of a column pandas
df["Column"].mean()
Example 2: calculating mean for pandas column
df["columnName"].mean()
df["Column"].mean()
df["columnName"].mean()