+1 vote
in Python by
Correct way to declare a variable x of float data type in python:

a) x = 2.5

b) float x = 2.5

c) float(2.5)

d) All of the above
...