为了账号安全,请及时绑定邮箱和手机立即绑定

如何将数据框列中的数字转换为逗号分隔

如何将数据框列中的数字转换为逗号分隔

慕桂英546537 2022-10-06 19:42:42
我正在使用 python,所以在我的数据框中我有一个名为的列Company Profit,该列的值是33536310, 842925200,.. etc.我想将所有值转换为每三位用逗号分隔,例如:231,535,366 整列中的等
查看完整描述

2 回答

?
忽然笑

TA贡献1806条经验 获得超5个赞

像这样的东西会起作用:


In [601]: def thousand_separator(val): 

     ...:     return f"{val:,}"  

     ...: 


In [602]: df['Company Profit'] = df['Company Profit'].apply(thousand_separator) 

In [603]: df['Company Profit']                                                                                                                                                              

Out[602]: 

0     33,536,310

1    842,925,200

Name: Profit, dtype: object


查看完整回答
反对 回复 2022-10-06
?
MMMHUHU

TA贡献1834条经验 获得超8个赞

或者,您可以f-string在较新版本的 Python 中执行此操作。使用逗号作为分隔符:


df = pd.DataFrame({'Company Profit':[33536310,842925200,231535366]})

df['Company Profit'] = df['Company Profit'].apply(lambda x: f"{x:,}")

print(df)


  Company Profit

0     33,536,310

1    842,925,200

2    231,535,366


查看完整回答
反对 回复 2022-10-06
  • 2 回答
  • 0 关注
  • 93 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信