for n in range(2,10): for x in range(2,n): if n%x == 0: print(n,'is',x,'*',n//x) please interpret this | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

for n in range(2,10): for x in range(2,n): if n%x == 0: print(n,'is',x,'*',n//x) please interpret this

I need help with regards to interpretation of that code

30th Dec 2019, 4:13 PM
Desmond
Desmond - avatar
2 Answers
+ 1
Thanks a lot. but please, what's floor division
30th Dec 2019, 4:51 PM
Desmond
Desmond - avatar
+ 1
Thanks alot
30th Dec 2019, 4:56 PM
Desmond
Desmond - avatar