+2 votes
in Mathematics by kratos

Print all multiples of 13 that are smaller than 100. Use the range function in the following manner : range (start, end, step) where ‘Start’ is the starting value of the counter, ‘end’ is the end value and ‘step’ is the amount by which the counter is increased each time.

1 Answer

+5 votes
by kratos
 
Best answer

program to print multiples of 13 smaller than 100 for the counter in range (13,100,13) :

print counter

...