Q72
What will be the output of the following Python code? x = "abcdef" while i in x: print(i, end=" ")
A.
a b c d e f
B.
abcdef
C.
i i i i i i ...
D.
error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board