![go](https://habrastorage.org/r/w120/webt/5b/2e/6a/5b2e6a4a389cc942256392.png)
Go
- 1 ответ
- 0 вопросов
0
Вклад в тег
For convenience, any of the indices may be omitted. A missing low index defaults to zero; a missing high index defaults to the length of the sliced operand:
a[2:] // same as a[2 : len(a)]
a[:3] // same as a[0 : 3]
a[:] // same as a[0 : len(a)]