“Python dividido no índice” Respostas de código

Como dividir a string por lista de índices 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 dividido no índice

>>> 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

Respostas semelhantes a “Python dividido no índice”

Perguntas semelhantes a “Python dividido no índice”

Mais respostas relacionadas para “Python dividido no índice” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código