Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8900841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T01:11:56+00:00 2026-06-15T01:11:56+00:00

How can I explicitly tell python to read a decimal number using the point

  • 0

How can I explicitly tell python to read a decimal number using the point or the comma as a decimal separator? I don’t know the localization settings of the PC that will run my script, and this should not influence my application, I only want to say:

f = read_float_with_point("3.14")

or

f = read_float_with_comma("3,14")

I think that writing

def read_float_with_comma(num):
    return float(num.replace(",", ".")

is not secure, because I don’t know the locale settings!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T01:11:59+00:00Added an answer on June 15, 2026 at 1:11 am

    because I don’t know the locale settings

    You could look that up using the locale module:

    >>> locale.nl_langinfo(locale.RADIXCHAR)
    '.'
    

    or

    >>> locale.localeconv()['decimal_point']
    '.'
    

    Using that, your code could become:

    import locale
    _locale_radix = locale.localeconv()['decimal_point']
    
    def read_float_with_comma(num):
        if _locale_radix != '.':
            num = num.replace(_locale_radix, ".")
        return float(num)
    

    Better still, the same module has a conversion function for you, called atof():

    import locale
    
    def read_float_with_comma(num):
        return locale.atof(num)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know we can explicitly call the constructor of a class in C++ using
Can I call constructor explicitly, without using new , if I already have a
I understand it gets called after each test method but can somebody explicitly tell
How can I explicitly tell Hibernate to use or not to use SQL index?
My Android tutorial states that I can explicitly tell the TTS engine which stream
I'm learning asp.net mvc and found something interesting: It seems that I can't explicitly
Can i make an object in C++ specifying its memory address explicitly? This is
Does anyone know of a tool that I can use to find explicit C-style
Can anyone let me know how can we change the value of kendo combobox
Can I order my users in the database, so I don't have to say

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.