Answers for "python split by space"

3

python split first space

>>> s = "238 NEO Sports"
>>> s.split(" ", 1)
['238', 'NEO Sports']
Posted by: Guest on January-26-2021
3

pandas split by space

# importing pandas module  
import pandas as pd 

# new data frame with split value columns 
data["Team"]= data["Team"].str.split(" ", n = 1, expand = True) 

# df display 
data
Posted by: Guest on April-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language