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
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