What is the output for the given python code?
import pandas as pd
import numpy as np
d = {'Name':pd.Series(['Tom','James','Ricky','Vin']),
'Age':pd.Series([25,26,25,23]),
'Rating':pd.Series([4.23,3.24,3.98, 4])}
df = pd.DataFrame(d)
x=df.Age.mean()
print(x)
1
24.95
2
24.75
3
24.5
4
24.25