Python Format Specifier for Thousands Separator
Jan 16, 2021
·
~1min read
I hate to say this, but I forgot this one-liner syntax in my online coding test. So, I think I need to put this here.
format = lambda n: '{:,}'.format(n)
print(format(-1234567890)) # -1,234,567,890
Thank you for reading!