InterviewSolution
Saved Bookmarks
| 1. |
How Do You Work With Array Slices? |
|
Answer» An array slice is a SECTION of an array that ACTS like a list, and you indicate what elements to put into the slice by using multiple array indexes in square BRACKETS. By SPECIFYING the range operator you can ALSO specify a slice. An array slice is a section of an array that acts like a list, and you indicate what elements to put into the slice by using multiple array indexes in square brackets. By specifying the range operator you can also specify a slice. |
|