import pandas as pd
data = {
"points": [100, 120, 114],
"total": [350, 340, 402]
}
df = pd.DataFrame(data)
print(df.mul(10))