Pls say me What this means?( in python) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Pls say me What this means?( in python)

17℅3

27th Oct 2017, 6:08 PM
Ashoob
Ashoob - avatar
2 Answers
+ 3
This is 17 modulus 3... Get floor division of the two numbers 17 // 3 = floor(5.6666) = 5 Then multiply the divisor with that resulting floor 3 * 5 = 15 Now subtract dividend minus this resulting multiplication 17 - 15 = 2, which is the correct answer! 17 % 3 = 2
27th Oct 2017, 6:12 PM
Muhammad Kamal
Muhammad Kamal - avatar
+ 1
tnx man💟
27th Oct 2017, 6:24 PM
Ashoob
Ashoob - avatar