0 votes
in Python by
Which of the following will not result in declaring x as datatype of float?

a)x=int(y)

b)x=float.fromhex('A')

c)x=5

d)x=float(10)

1 Answer

0 votes
by

x=int(y)

...