190k views
3 votes
Look at the following assignment statements: value1 = 99 value2 = 45.9 value3 = 7.0 value4 = 7 value5 = 'abc' After these statements execute, what is the Python data type of the values referenced by each variable?

User Aftab Alam
by
7.8k points

1 Answer

0 votes

Final answer:

The Python data type of the values referenced by each variable are integers, floats, and a string.

Step-by-step explanation:

After the given assignment statements execute, the Python data type of the values referenced by each variable are:

  1. value1: int (integer)
  2. value2: float (floating-point number)
  3. value3: float (floating-point number)
  4. value4: int (integer)
  5. value5: str (string)

User WillyC
by
7.9k points