Give me the write code

import pandas as pd

Given Series of student grades

grades = pd.Series(
[85, 92, 78, 95, 88],
index=[‘Alice’, ‘Bob’, ‘Charlie’, ‘David’, ‘Eve’]
)

Output Bob’s and David’s scores on separate lines

print(grades[‘Bob’])
print(grades[‘David’])