我有一个包含字符串列表的数据帧,我需要删除每个列表中的空格:
ID numbers
0 [ 1, 2,3, 4]
1 [ abc, zzy]
2 [ zz12, 22wq, 78]
如何删除“数字”字段中的间距?
ID numbers
0 [1,2,3,4]
1 [abc,zzy]
2 [zz12,22wq,78]
这是我尝试过的:
# remove spacing
df['numbers'] = df['numbers'].replace({' ':''}, regex=True)
但它似乎不起作用!
人到中年有点甜
翻过高山走不出你
临摹微笑
相关分类