34.
What will be the output of the following Python code snippet?
string = "my name is x"
for i in ' '.join(string.split()):
    print (i, end=", ")

36.
What will be the output of the following Python code?
string = "my name is x"
for i in string:
    print (i, end=", ")

39.
What will be the output of the following Python code?
string = "my name is x"
for i in string.split():
    print (i, end=", ")