Answer to Question #266217 in Python for gorgeeeeous

Question #266217

Input



Five lines containing a string on each.



C


C#


Java


Python


Javascript


Output



A single line containing all the strings separated by a comma and a space.



C,·C#,·Java,·Python,·Javascript


1
Expert's answer
2021-11-15T07:38:49-0500
lines = []
for _ in range(5):
	lines.append(input())
lines_to_str = ", ".join(lines)
print(lines_to_str)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS