Step 1 of 30
Time Remaining30:00

Topic: Float Syntax

1 / 30

In Python, the presence of a decimal point is the primary indicator that a number belongs to the floating-point class. Examine the following variable assignments:

VariableAssignment
a10
b10.0
c"10.0"
dfloat(10)

Which variable is initialized as a float literal directly by the interpreter without requiring a function call or being stored as a string?

Your Answer

Select the best option below.

a
b
c
d

Review your choice before proceeding.