美文网首页
【2019-01-27】字符切割相关

【2019-01-27】字符切割相关

作者: BigBigFlower | 来源:发表于2019-01-27 12:50 被阅读0次

    (1) a="col9*4+col10*col11/col12-col12"

    arr = a.split('/');

    arr

    ['col9*4+col10*col11', 'col12-col12']

    第0个 第一个

    (2)train['survey_time']

    原始数据

    train['survey_time']=train['survey_time'].str.split('/')

    train['survey_time']

    切割后数据 第一行

    (3)按行读取

    输出结果 错误的处理 ?????为什么是这种格式的输出???

    相关文章

      网友评论

          本文标题:【2019-01-27】字符切割相关

          本文链接:https://www.haomeiwen.com/subject/jnawjqtx.html