How to format a number with thousands separator (commas) in Python

2 Answers

0 votes
num = 49876173

print(f"{num:,d}")


   
   
   
'''
run:
   
49,876,173
 
'''

 



answered Jul 25, 2022 by avibootz
0 votes
num = 3438734.9815

string = '{:,.2f}'.format(num)

print(string)


   
   
   
'''
run:
   
3,438,734.98
 
'''

 



answered Jul 25, 2022 by avibootz

Related questions

1 answer 160 views
1 answer 214 views
1 answer 118 views
1 answer 129 views
1 answer 119 views
1 answer 135 views
1 answer 186 views
...