DF1
Place Actor
['new york','washington'] ['chris evans','John']
['new york','los angeles'] ['kate','lopez']
我想删除每个列项目中的括号和引号:
预期产出:
DF1
Place Actor
new york,washington chris evans,John
new york,los angeles kate,lopez
我的尝试:
cols = [Place,Actor]
df1[cols].apply(lambda x : x [' + ', '.join(df1[cols]) + ']')
1条答案
按热度按时间wlp8pajw1#
如果有列表,请使用
Series.str.join
:编辑:如果有字符串,请使用
Series.str.strip
和Series.str.replace
: