Roshan has written few points about iloc( ) function of Series in Python. His friend Suman told that one of the written statement is not correct. Help him to find the incorrect statement.
1. In iloc( ) method, we have to pass an integer index.
2.This method include the last element of the range passed.
3.S1.iloc[3] will display fourth value of Series ‘S1’
4.S1.iloc[:3] will display first three values of Series ‘S1’
Answer:2