Computer Science, asked by saanvimkalyankar, 4 months ago

how to write a program on python to display the multiples of 6 from 8 to 18

Answers

Answered by Anonymous
1

Answer:

for i in range(8, 19):

print("6*", i, "is", 6*i)

Explanation:

Similar questions