我怎么能分开'日期'列到'日期'和'时间'柱?

时间:2017-02-03 06:36:46

标签: pandas ipython

在显示的图片中,我如何分割'日期'列到'日期'和'时间'列?

enter image description here'

1 个答案:

答案 0 :(得分:3)

您可以使用whitespace df = pd.DataFrame({'Date':['4/1/2016 0.00','4/2/2016 0.05']}) print (df) Date 0 4/1/2016 0.00 1 4/2/2016 0.05 df[['Date','Time']] = df.Date.str.split(expand=True) print (df) Date Time 0 4/1/2016 0.00 1 4/2/2016 0.05 什么是默认分隔符:

conda(anaconda 2)