I think there is a bug in Python. When I wanted to sum an integer and a float number Python did it wrong.From GeeksForGeeks İ read "it is not a bug and it is problem of floating-point numbers".But i checked in C++ and the results was true.Why?
I wrote print(12+23.12) and the result was 35.120000000000005
Then I wrote print(23+12.23) and the result was 35.230000000000004
If this is not bug,please say this reason