GUVI
Back

codekata problem

Created 2 years ago
418 Views
2 Comments
kreetykishore
@kreetykishore
kreetykishore
@kreetykishoreProfile is locked. Login

Write a code to get the input in the given format and print the output in the given format.

Input Description:

A single line contains a string.

Output Description:

Print the characters in a string separated by comma

Sample input: guvi

Sample output : g,u,v,i

my solution:

a = input()

for i in a:

print(i,end =',')

the solution works fine with other compilers

but here testcase shows error eventhough actual output and expected output are same

kindly provide the correct syntax

Comments (2)
Please login to comment.
 
Powered by habitate.io Habitate