A=3+5/8
b=int (3+5/8)
c=3+float (5/8)
d=3+float (5)/8
e=3+5.0/8
f=int (3+5/8.0)
print(a,b,c,d,e,f)
what would the answer of this question in python?
Answers
Answered by
5
Answer:
A=3+5/8
b=int (3+5/8)
c=3+float (5/8)
d=3+float (5)/8
e=3+5.0/8
f=int (3+5/8.0
this is available on goohle ..
Similar questions