Computer Science, asked by ramsmedicine, 2 months ago

Assign names of your five friends to five different variables. Write a program tp print your friends name in different lines

tell me the correct answers otherwise complain

Answers

Answered by Annonymous01
1

Answer:

the solution of the given program (in python) is:-

a = input("first name")

b = input("second name")

c = input("third name")

d = input("fourth name")

e = input("fifth name")

print(a, "\n", b, "\n", c, "\n", d, "\n", e)

(mark me as the brainliest of it is correct)

Similar questions