I Want the output to be 
xyz
but its coming like 
x
y
z
as I am iterating over my string in for loop but Still any Way to print string together after iterating?
My Simple Py Code => 
string='xyz'
for lel in string:
                        print lel
 
     
     
     
    