df看起来像
type
0 a
1 b
2 c
输出应类似于
string="'a','b','c'"
我曾经使用df.type.str.cat(sep=',')
在之间添加,但是如何为每个元素添加引号呢?
答案 0 :(得分:1)
<input type="hidden" id="sales_price" name="sales_price" value="<?php echo $sales_price ?> "/>
或者:
string = ','.join("'"+df['type']+"'")
答案 1 :(得分:1)
另一种替代方法可能是将format
与apply
和sum
结合使用:
result = df.type.apply("'{}',".format).sum()[:-1]