Answers for "get everything till space 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
1

how to fetch all chars of a string before a space in python

>>> s1.split(':')
['Username', ' How are you today?']
>>> s1.split(':')[0]
'Username'
Posted by: Guest on May-24-2020

Code answers related to "get everything till space python"

Python Answers by Framework

Browse Popular Code Answers by Language