locale module accesses a database of culture specific data formats,localeaccesses,#locale modu


#locale module accesses a database of culture specific data formats. The #grouping #attribute of locale's format function provides a direct way of formatting numbers #with group separators:import localelocale.setlocale(locale.LC_ALL, 'English_United States.1252')conv = locale.localeconv()          # get a mapping of conventionsx = 1234567.8locale.format('%d', x, grouping=True)locale.format('%s%.*f', (conv['currency_symbol'],conv['frac_digits'], x), grouping=True)

评论关闭