如何在变量中拆分数据

时间:2019-06-11 09:03:56

标签: variables split

我想删除变量中的一些数字

我的数据是这样的:

        A                         
ID
1   2212807790       
2   1512300101       
3   3111560909       
4   1201017007       
5   1711344658       
6   1817302002       
..

我需要一个变量B,而变量A中没有后四个数字:

       A                B          
ID
1   2212807790       221280
2   1512300101       151223
3   3111560909       311156
4   1201017007       120101
5   1711344658       171134
6   1817302002       181730
..

1 个答案:

答案 0 :(得分:0)

#reading csv
bData=pd.read_csv('sample.csv')
#copying column A to a list
myList=bData['A']
for i in range(len(myList)):

    myStr=str(myList[i])
    myList[i]=myStr[0:(len(str(myList[i]))-4)]
#making the newly created list with truncated columns A as column B
bData['B']=myList