Hello again. Hehe. This is an equivalency method in Python of earlier JavaScript post about Formatting Large Integer . It has demos of the method (in JavaScript). So before we start, the number format in any application, usually, needs to be readable (for interface, such as the dilly we look at) and process-able -- the original format for calculation and then it will be displayed on the dilly we look at. This is a method to make a large integer readable, of some sort. In another words, this is a Python snippet to insert separators between digits. There are countries which use comma as large digit separator and point as decimal mark, and there are countries that use the opposite of that. The first concept, for example: 1,000,400 (large integer) -- it's one million and four hundred 23.58 (decimal) -- twenty three point fifty eight 1,000,000.253 (seriously) -- one million point two hundred and fifty three And the second one: 1.000.400 (large integer) -- one million and...