Q39
What will be the output of the following Python code? string = "my name is x" for i in string.split(): print (i, end=", ")
A.
m, y, , n, a, m, e, , i, s, , x,
B.
m, y, , n, a, m, e, , i, s, , x
C.
my, name, is, x,
AnswerD.
error
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board