The true statements about Python primitive types.
- 32-bit integer type (a.k.a. int32) can represent integer value from -2^31 (-2,147,483,648) to 2^31-1 (2,147,483,647)
- A binary floating-point method is used to represent fractions in binary numbers.
- The decimal number 0.1 cannot be expressed without error in binary floating-point format.
What are Python primitive types?
The Python primitive types is known to be made up of four primitive data types which are:
- Integer.
- Float.
- String.
- Boolean.
Note that The true statements about Python primitive types.
- 32-bit integer type (a.k.a. int32) can represent integer value from -2^31 (-2,147,483,648) to 2^31-1 (2,147,483,647)
- A binary floating-point method is used to represent fractions in binary numbers.
- The decimal number 0.1 cannot be expressed without error in binary floating-point format.
Learn more about Python from
https://brainly.com/question/26497128
#SPJ1