Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
decimal comma
#10
It looks like i18n/l10n stuff. You can use locale to delocalize language-specific strings.

import locale

# get current systems locale
# and set it for the current running interpreter
locale.setlocale(locale.LC_ALL, locale.getlocale())

# input str from somewhere
value_str = "1.200.500,33"

# delocalize the value
# converting the resulting str into a float
value_float = float(locale.delocalize(value))

# format a float to a str with the current currency
value_currency = locale.currency(value_float)
The package babel has additional helper functions: https://babel.pocoo.org/en/latest/numbers.html
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Messages In This Thread
decimal comma - by DPaul - Feb-18-2022, 01:49 PM
RE: decimal comma - by Larz60+ - Feb-18-2022, 08:10 PM
RE: decimal comma - by DPaul - Feb-19-2022, 06:32 AM
RE: decimal comma - by Gribouillis - Feb-19-2022, 07:57 AM
RE: decimal comma - by DPaul - Feb-19-2022, 08:39 AM
RE: decimal comma - by DPaul - Feb-19-2022, 08:41 AM
RE: decimal comma - by bowlofred - Feb-19-2022, 08:46 AM
RE: decimal comma - by Gribouillis - Feb-19-2022, 09:03 AM
RE: decimal comma - by DPaul - Feb-19-2022, 09:05 AM
RE: decimal comma - by DeaD_EyE - Feb-22-2022, 12:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [SOLVED] [BeautifulSoup] Turn select() into comma-separated string? Winfried 0 1,140 Aug-19-2022, 08:07 PM
Last Post: Winfried
  How to format Excel column with comma? dee 0 1,399 Jun-13-2022, 10:11 PM
Last Post: dee
  Adding a comma in the resulting value stsxbel 6 2,699 May-22-2021, 09:24 PM
Last Post: stsxbel
  How to instantly add quotation marks and comma for parameters? cheers100 4 8,199 Oct-22-2020, 12:51 PM
Last Post: cheers100
  print scripts example includes comma that seems to serve no purpose flour_power_33 5 2,854 Sep-02-2020, 03:32 AM
Last Post: flour_power_33
  Grabbing comma separed values from SQLite and putting them in a list PythonNPC 8 4,143 Apr-10-2020, 02:39 PM
Last Post: buran
  Phyton code to load a comma separated csv file in to a dict and then in to a dB mrsenorchuck 2 2,690 Nov-29-2019, 10:59 AM
Last Post: mrsenorchuck
  testing for Decimal w/o importing decimal every time Skaperen 7 4,514 May-06-2019, 10:23 PM
Last Post: Skaperen
  decimal point or comma Skaperen 8 5,297 Mar-17-2019, 06:02 AM
Last Post: DeaD_EyE
  string agg separated by comma shyamal_kesh 1 2,147 Nov-23-2018, 12:57 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020