Question: for i in range(2): for j in range(10): for k in range(10): if not (k+10*j+100*i) % 13: print (k+10*j+100*i) in python3.6 use the code above
for i in range(2):
for j in range(10):
for k in range(10):
if not (k+10*j+100*i) % 13:
print (k+10*j+100*i)
in python3.6 use the code above to adjust a new code that all positive multiples of 17 which are less than 300 will print
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
