Computer Science, asked by vinay17118, 5 months ago

write a program using float value's sum =3 as int
float a=1.2 and float b.1.8

Answers

Answered by mnvibhath
0

Answer:

Explanation:

>>> a=1.2

>>> b=1.8

>>> print(a+b)

3.0

Similar questions