how to write a program on python to display the multiples of 6 from 8 to 18
Answers
Answered by
1
Answer:
for i in range(8, 19):
print("6*", i, "is", 6*i)
Explanation:
Similar questions