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
lines = [] for _ in range(5): lines.append(input()) lines_to_str = ", ".join(lines) print(lines_to_str)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments