Anshuman wants to create a series named ‘S1’. He has written the following codes. His friend Shubham checked the code and said that one of the code given below is not working. As a friend of Anshuman, help him to find the incorrect code. a. S1=pd.Series(data=[11, 12, 5, 6,9],index=[1,2,3,4,5])
1.S1=pd.Series(data=[11, 12, 5, 6,9],index=[1,2,3,4,5])
2.S1=pd.Series([11, 12, 5, 6,9],index=[1,2,3,4,5])
3.S1=pd.Series([11, 12, 5, 6,9],[1,2,3,4,5])
4.S1=pd.Series(data=[11, 12, 5, 6,9], [1,2,3,4,5])