0
Separating the decimals
How, when you divide, you get the code to not insert the .#
2 Respostas
+ 2
whole division operator: //
turn float to int: int(number)
so:
7 // 2 == int(7 / 2) == 3
+ 1
Ok thanks!
How, when you divide, you get the code to not insert the .#