Answers for "split re python"

0

re python split()

s_comma = 'one,two,three,four,five'

print(s_comma.split(','))
# ['one', 'two', 'three', 'four', 'five']

print(s_comma.split('three'))
# ['one,two,', ',four,five']
Posted by: Guest on June-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language