Login
Remember
Register
Ask a Question
Which of the following will not result in declaring x as datatype of float?
0
votes
asked
May 17, 2019
in
Python
by
Derya
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)
#python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 21, 2019
by
anonymous
x=int(y)
...