Computer Science, asked by rainapandey19, 4 months ago


In Pandas, s is a series with
a series with following data
S= pd. Series ([ 10,20,30,40, 50])
find out the output of S [2:5]​

Answers

Answered by vinodkumar05021979
0

Answer:

20,30,40

Explanation:

as [start:stop ] take (n-1) value of the stop value

so it will take 4 and not 5

Similar questions