Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

thousand separator python

amount = 1000000
text = 'The amount he paid us was ${:,}'
print(text.format(amount))
#>>>The amount he paid us was $1,000,000
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #thousand #separator #python
ADD COMMENT
Topic
Name
1+6 =