Q. What will be the output of the following code?
Code:
x = "abcdef"
i = "i"
while i in x:
print(i, end=" ")
β
Correct Answer: (D)
No Output
x = "abcdef"
i = "i"
while i in x:
print(i, end=" ")
You must be Logged in to update hint/solution