Answers for "text in python get only until a certian charatcer"

1

get string until character python

s = "first_second"
s.split('_')[0] # Split the string on '_' return the first part. 
>>> 'first'
Posted by: Guest on October-23-2020

Code answers related to "text in python get only until a certian charatcer"

Python Answers by Framework

Browse Popular Code Answers by Language