Write the output of the following : import pandas as pd S1 = pd.Series(['NewDelhi', 'WashingtonDC', 'London', 'Paris'], index=['India', 'USA', 'UK', 'France']) print(S1['India', 'UK'])
1.India NewDelhi UK London dtype: object
2.India NewDelhi UK Washington dtype: object
3.Error
4.None of the above
Answer:3
Posted Date:-2021-12-13 05:58:12