Write the statement to get NewDelhi as output using positional index. import pandas as pd S1 = pd.Series(['NewDelhi', 'WashingtonDC', 'London', 'Paris'], index=['India', 'USA', 'UK', 'France'])
1.print(S1[0])
2. print(S1[‘India’])
3.Both of the above
4.print(S1.India)
Answer:1