Q34
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=", ")
A.
m, y, , n, a, m, e, , i, s, , x,
AnswerB.
m, y, , n, a, m, e, , i, s, , x
C.
my, name, is, x,
D.
error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board