Advertisement
here2share

# int_commas_as_thousands_separators.py

Sep 5th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. # int_commas_as_thousands_separators.py
  2.  
  3. value = 1234567890.0123
  4. print "{:,}".format(value)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement