标签: python arrays pandas
我的列表数组需要转换为字符串
array(['Hi','Please','convert','to','string'], dtype=object)
为:
'Hi please convert to string'
答案 0 :(得分:1)
使用连接功能。
方法join()返回一个字符串,其中包含字符串元素 序列已由str分隔符连接。
您可以在here
要解决您的问题,请执行以下操作:
st = " ".join(li)