Vidyalelo
Python · Q36

Python Loops and Conditionals: MCQs for Exam Readiness

Programming · Python · question 36

Q36

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

A.
m, y, , n, a, m, e, , i, s, , x,
Answer
B.
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