What will be the output of the following code. f=int (3+5/8.0) print (f)
Answers
Answered by
0
Answer:
// (3+5/8.0)
= 3+0.0
= 3
print(f)
// output 3
Similar questions