About 3,280 results
Open links in new tab
  1. Python Data Types - W3Schools

    Built-in Data Types In programming, data type is an important concept. Variables can store data of different types, and different types can do different things. Python has the following data types built-in …

  2. Double precision floating values in Python? - Stack Overflow

    Jul 12, 2011 · Python's built-in float type has double precision (it's a C double in CPython, a Java double in Jython). If you need more precision, get NumPy and use its numpy.float128.

  3. Double (Float) Data Type in Python - AppDividend

    Jul 7, 2025 · Python does not have a built-in double data type, but it does have a float type, which designates a floating-point number. It handles double precision by default, adhering to the IEEE 754 …

  4. Built-in Types — Python 3.14.4 documentation

    2 days ago · Python supports a concept of iteration over containers. This is implemented using two distinct methods; these are used to allow user-defined classes to support iteration.

  5. How to Convert Python String to Double? - Python Guides

    Apr 2, 2025 · In this article, I explained how to convert Python string to double. I discussed three methods such as using the float() function, using the decimal module, and error handling during …

  6. What Does // Mean in Python? Operators in Python

    Jul 21, 2022 · In this article, you’ve learned how you can use the double slash // operator and how it works behind the scenes. In addition, you learned about two alternatives of the // operator – …

  7. What does the Double Star operator mean in Python?

    Jul 23, 2025 · In a function definition, the double asterisk ** is used to define **kwargs, which allows you to pass a variable number of keyword arguments as a dictionary. While kwargs is just a naming …

  8. Python's `double`: A Comprehensive Guide - CodeRivers

    Jan 29, 2025 · This blog post aimed to provide a comprehensive understanding of floating-point numbers in Python, which are often associated with the concept of double in other programming …

  9. Double precision floating values in Python - AskPython

    Jan 27, 2024 · Luckily, Python offers some great options for working with high-precision decimal values. Python’s standard float type, based on double-precision IEEE 754 format, provides up to 15 decimal …

  10. What is ** in Python? (Double Asterisk or Double Star)

    Sep 14, 2024 · Learn how to use the ** in Python for exponentiation, unpacking keyword arguments, merging dictionaries, and more with easy-to-understand examples.