write a program to display the multiples of 48 in python
Answers
Answered by
2
Question:-
➡ Write a program to display the multiples of 48.
Program:-
This is written in Python.
for x in range(1,11):
y=48*x
print("48 * ",x, " = ", y)
Have a great day ahead..
Answered by
7
# multiples of 48 upto 100
multiples_48 = [f"48 x {x} = {48 * x}" for x in range(1, 101)]
print("\n".join(multiples_48))
Similar questions
Environmental Sciences,
3 months ago
Math,
3 months ago
Math,
6 months ago
Biology,
6 months ago
Science,
1 year ago
Business Studies,
1 year ago