0
Answer to (3**2)//2? HELP
Answer to (3**2)//2? It should be 4.5 but is telling me that is wrong. Please help.
1 Respuesta
+ 4
You can run the code snippet in playground and check the output.
Note the difference:
9 / 2 = 4.5
9 // 2 = 4
// is called floor division ("division with remainder")
(please tag the relevant programming language)