Answers for "how to split a substring in python after specific character"

0

python split every character in string

def split(word): 
    return [char for char in word]
Posted by: Guest on September-21-2020
0

python split string after substring

my_string="hello python world , i'm a beginner "
print my_string.split("world",1)[1]

#split takes the word(or character) to split on and optionally a limit to the number of splits.
#In this example split on "world" and limit it to only one split.
Posted by: Guest on October-18-2021

Code answers related to "how to split a substring in python after specific character"

Python Answers by Framework

Browse Popular Code Answers by Language