Answers for "python extract all characters from string before a character"

0

python extract all characters from string before a character

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

Code answers related to "python extract all characters from string before a character"

Python Answers by Framework

Browse Popular Code Answers by Language