print(df2[“weight”])
print(df2.weight[’Tim’])
# Solution
import pandas as pd, numpy as np
my_di = {“name” : [“Jiya”, “Tim”, “Rohan”],
“age” : np.array([10,15,20]),
“weight” : (75,123,239),
“height” :[4.5, 5, 6.1],
“siblings” : 1,
“gender” : “M”}
df2 = pd.DataFrame(my_di, index=my_di[“name”])
print(df2[“weight”] )
print(df2.weight[‘Tim’])
# Output
Jiya 75
Tim 123
Rohan 239
Name: weight, dtype: int64
123