I'm new to python and I want you someone to explain me this:
print(9.2%4) must give me the remainder when 4 is divided by 9.2 and the output of the code is 1.1999999999999993 which is clearly not true
But this code: print(9.2/4) gives me output 2.3
Someone please explain this to me