Computer Science, asked by singhbir978, 4 months ago

what is slicing in pandas?​

Answers

Answered by profdambaldor
0

Answer:

Slicing using the [] operator selects a set of rows and/or columns from a DataFrame. To slice out a set of rows, you use the following syntax: data[start:stop] . When slicing in pandas the start bound is included in the output. The stop bound is one step BEYOND the row you want to select.

Explanation:

Similar questions