pandas-文本数据分割split

pandas-文本数据分割split_第1张图片

# 将航班经过的地点进行分割
df['Location'].str.split(', ').head()

pandas-文本数据分割split_第2张图片

# 使用expand
df['Location'].str.split(', ', expand=True).head()

pandas-文本数据分割split_第3张图片

# 使用n
df['Location'].str.split(', ', expand=True, n=1).head()

pandas-文本数据分割split_第4张图片
只有当expand为False时,才可以使用str[]或者str.get()获取数据

# 获取分割的结果
df['Location'].str.split(', ').str.get(0).head()

pandas-文本数据分割split_第5张图片

df['Location'].str.split(', ').str[1].head()

pandas-文本数据分割split_第6张图片

你可能感兴趣的:(小象学院,数据分析)