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
2 ответов
+ 1
Thanks a lot.
but please, what's floor division
+ 1
Thanks alot
I need help with regards to interpretation of that code