CBSE Class 12 Informatics Practices
Question 44 of 167
Python Pandas — I — Question 9
Back to all questionsS[2]
Reason — The syntax to access individual elements of a Series object is <Series Object name>[<valid index>]. Therefore, according to this syntax, to display third element of a Series object S with zero based indexing, S[2] is correct.