“Python split string dengan kata tertentu” Kode Jawaban

Python membagi kalimat menjadi kata -kata

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

cara membagi kata dalam python

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

Print(splitted_text)
DryRun

Python split string dengan kata tertentu

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

Jawaban yang mirip dengan “Python split string dengan kata tertentu”

Pertanyaan yang mirip dengan “Python split string dengan kata tertentu”

Lebih banyak jawaban terkait untuk “Python split string dengan kata tertentu” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya