+ 5
Correct me where I am wrong
In math; dividend Ă· divisor = quotient and (possibly a remainder) In python; quotient = dividend // divisor #It will only give the whole number quotient with or without a remainder i.e (an integer) remainder = dividend % divisor #Gets the remainder after a division and 0 if there isn't one. Finally, if you want the answer in float (decimal number) just use a single forward slash i.e dividend / divisor
7 Answers
+ 7
You are rigth đ
+ 3
Watch out for this kind of errors as they can spend a lot of your time discovering them. If you need some help you can try using some programs like checkmarx or others but it's recommended to do it on your own.
Good luck!
Ben.
+ 2
correct
0
it's ok, no worries