Answers for "how to read from a string until char is python"

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 "how to read from a string until char is python"

Python Answers by Framework

Browse Popular Code Answers by Language