Answers for "python separate string by line"

2

python split string by tab

>>> import re
>>> strs = "footbarttspam"
>>> re.split(r't+', strs)
['foo', 'bar', 'spam']
Posted by: Guest on December-12-2020
26

how to split a string by character in python

def split(word): 
    return [char for char in word]  
      
# Driver code 
word = 'geeks'
print(split(word)) 

#Output ['g', 'e', 'e', 'k', 's']
Posted by: Guest on December-07-2019

Code answers related to "python separate string by line"

Python Answers by Framework

Browse Popular Code Answers by Language