“Python Split String по конкретному слову” Ответ

Python разделил предложение на слова

sentence = 'Hello world a b c'
split_sentence = sentence.split(' ')
print(split_sentence)
Stormy Seal

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

text= "I am Batman"
splitted_text= text.split()

Print(splitted_text)
DryRun

Python Split String по конкретному слову

>>> mary = 'Mary had a little lamb'
>>> mary.split('a')                 # splits on 'a'
['M', 'ry h', 'd ', ' little l', 'mb'] 
>>> hi = 'Hello mother,\nHello father.'
>>> print(hi)
Hello mother,
Hello father. 
>>> hi.split()                # no parameter given: splits on whitespace
['Hello', 'mother,', 'Hello', 'father.'] 
>>> hi.split('\n')                 # splits on '\n' only
['Hello mother,', 'Hello father.']
Confused Cormorant

Ответы похожие на “Python Split String по конкретному слову”

Вопросы похожие на “Python Split String по конкретному слову”

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

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

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