Computer Science

What will the following code produce?

a = 8.6
b = 2
print ( a//b )
  1. 4.3
  2. 4.0
  3. 4
  4. compilation error

Python Data Handling

58 Likes

Answer

4.0

Answered By

8 Likes


Related Questions