“Python Split в индексе” Ответ

Как разделить строку по списку индексов Python

In [42]: s = "Hello there!"

In [43]: [s[v1:v2] for v1, v2 in zip([0]+l, l+[None])]
Out[43]: ['He', 'llo ', 'the', 're!']
Ava

Python Split в индексе

>>> list1 = ['a','b','c','d','e','f','g','h', 'i', 'j', 'k', 'l']
>>> print list1[:5]
['a', 'b', 'c', 'd', 'e']
>>> print list1[-7:]
['f', 'g', 'h', 'i', 'j', 'k', 'l']
# Note how you can slice either positively or negatively.
# When you use a negative number, it means we slice from right to left.
Ugliest Unicorn

Ответы похожие на “Python Split в индексе”

Вопросы похожие на “Python Split в индексе”

Больше похожих ответов на “Python Split в индексе” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования