import pandas as pd
mydata = {"Key" : [567, 568, 569, 570, 571, 572] , "Sprint" : ["Max1", "Max2", "DI001 2", "DI001 25", "DAS 100" , "DI001 101"]}
df = pd.DataFrame(mydata)
print (df)
字符串
从这个 Dataframe df
中,我想只分割出现在字符串最后一部分的数字。分割字符串不起作用,因为结尾的位数不是预定义的。它最多可以是3位。
预期输出:在“Sprint Number”列中,数据应显示如下。
的数据
1条答案
按热度按时间iklwldmw1#
这里有一个
str.extract
的解决方案。字符串