172k views
1 vote
What are the four types of numbers in python version 2?

a. int, whole, natural and float
b. integer, fractions, whole and natural
c. integer, decimal, fractions and complex d. int, long, float, and complex

User Prema
by
7.1k points

1 Answer

4 votes

Final answer:

Python 2 supports four types of numbers: int, long, float, and complex.

Step-by-step explanation:

Python 2 supports four types of numbers:

  1. int: Represents whole numbers such as -2, -1, 0, 1, 2, etc.
  2. long: Represents long integers, which can handle larger numbers.
  3. float: Represents decimal numbers, such as 3.14, -9.8, etc.
  4. complex: Represents numbers with both a real and imaginary part, such as 2 + 3i, -4 - 5i, etc.

Therefore, the correct option is d. int, long, float, and complex.

User Leventix
by
8.4k points