3. Write a Python program to create a Series object with 6 random integers and having vowel characters as indexes.

Solution :- 

import pandas as pd
import numpy as np
n = np.random.randint(0,100,6)
ser = pd.Series(n,index=[‘A’,’E’,’I’,’O’,’U’,’AE’])
print(ser)

Output :-