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 141 views
1 answer 194 views
1 answer 106 views
1 answer 121 views
1 answer 111 views
1 answer 124 views
1 answer 172 views
...