Respuesta :

The true statements about Python primitive types are:

  • 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 thee Python primitive data types?

The Python is known to have four primitive variable types which are:

  • Integers.
  • Float.
  • Strings.
  • Boolean.

Note that The true statements about Python primitive types are:

  • 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