# Bug report ### Bug description: print(8 // 0.2) print(8 / 0.2) Expected output: 40.0 40.0 Output: 39.0 40.0 why on earth does 8 // 0.2 return 39? ### CPython versions tested on: 3.11 ### Operating systems tested on: Windows