perform floating
point Arithmetic operations
x=0.5*10**3
y=0.4*10**4
Answers
Answered by
1
x = 0.5*10**3
y = 0.4*10**4
print (x)
print (y)
Output
500.0
4000.0
Similar questions