About 50 results
Open links in new tab
  1. python - How do I parse a string to a float or int? - Stack Overflow

    Dec 19, 2008 · For the reverse, see Convert integer to string in Python and Converting a float to a string without rounding it. Please instead use How can I read inputs as numbers? to close …

  2. Convert integer to string in Python - Stack Overflow

    Jun 23, 2019 · In the above program, int () is used to convert the string representation of an integer. Note: A variable in the format of string can be converted into an integer only if the …

  3. python - Convert all strings in a list to integers - Stack Overflow

    13 There are several methods to convert string numbers in a list to integers. In Python 2.x you can use the function:

  4. How can I convert a string to an int in Python? - Stack Overflow

    def convertStr(s): """Convert string to either int or float.""" try: ret = int(s) except ValueError: #Try float. ret = float(s) return ret That way if the int conversion doesn't work, you'll get a float …

  5. Convert hex string to integer in Python - Stack Overflow

    Jul 30, 2022 · 59 Convert hex string to int in Python I may have it as "0xffff" or just "ffff". To convert a string to an int, pass the string to int along with the base you are converting from. …

  6. python - How can I convert string values from a dictionary, into int ...

    Mar 16, 2011 · Check if the element is a dictionary, if it is, use the recursive update. If it's able to be converted into a float or int, convert it and modify the value in the dictionary. There isn't any …

  7. Convert a string to integer with decimal in Python

    I believe this is a useless bug that should be corrected in Python. int('2') --> 2 That converts the string '2' into an the integer 2. int(2.7) --> 2 Converts a float to an int. int('2.7') SHOULD …

  8. python - How can I check if a string represents an int, without …

    I've updated the code above to work in Python 3.5, and to include the check_int function from the currently most voted up answer, and to use the current most popular regex that I can find for …

  9. How to convert datetime to integer in python - Stack Overflow

    Feb 12, 2014 · In [1]: import datetime In [2]: %cpaste Pasting code; enter '--' alone on the line to stop or use Ctrl-D. :def to_integer(dt_time): : return 10000*dt_time.year + 100*dt_time.month + …

  10. Converting String to Int using try/except in Python

    Nov 10, 2011 · So I'm pretty stumped on how to convert a string into an int using the try/except function. Does anyone know a simple function on how to do this? I feel like I'm still a little hazy …