Write a python program to Print first five multiples of 7
Answers
Answered by
1
Answer:
Multiple of 7 is only 1 and 7
Answered by
0
Answer:
n = int(7)
print("First five multiples of", n, "are")
print(7, 7 * 2, 7 * 3, 7 * 4, 7 * 5)
Similar questions