Computer Science, asked by alpha01234, 6 months ago

write a program to display the multiples of 48 in python​

Answers

Answered by anindyaadhikari13
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 valeriy69
7

\small\mathsf\color{pink}{Solution\: using\: python\: 3}

# multiples of 48 upto 100

multiples_48 = [f"48 x {x} = {48 * x}" for x in range(1, 101)]

print("\n".join(multiples_48))

\small\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions