+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

Related questions

+1 vote
asked Jan 30, 2022 in Python by sharadyadav1986
+1 vote
asked Jan 30, 2022 in Python by sharadyadav1986
...