我有一个日志 df,在那个 df 我有列描述。好像。
Description
Machine x : Turn off
Another action here
Another action here
Machine y : Turn off
Machine x : Turn on
Another action here
我只需要用“:”分割行
喜欢:
Description Machine Action
Machine x : Turn off Machine x Turn off
Another action here
Another action here
Machine y : Turn off Machine y Turn off
Machine x : Turn on Machine x Turn on
Another action here
我已经尝试过:
s = df["Description"].apply(lambda x:x.split(":"))
df["Action"] = s.apply(lambda x: x[1])
df["Machine"] = s.apply(lambda x: x[0])
还有一些带有“startswith”的东西。
qq_花开花谢_0
婷婷同学_
陪伴而非守候
相关分类