I am trying to understand what option value n exactly does in string formatting for the type flag.
PEP 3101 says (in the section on available integer types):
'n' - Number. This is the same as 'd', except that it uses the
current locale setting to insert the appropriate
number separator characters.
I tried the following code:
print "This is a large number with formatting applied: {0:n}".format(1384309238430)
I get the output:
This is a large number with formatting applied: 1384309238430
That is, no number separator characters are present. How do I find my locale setting? How do I get the number separator characters (I am thinking that by number separator characters, it is referring to things such as thousands separator commas).