Q. Write the output of the following code
Code:
x = "Welcome to my blog"
j = "i"
while j in x:
print(j)
β
Correct Answer: (A)
No Output
x = "Welcome to my blog"
j = "i"
while j in x:
print(j)
You must be Logged in to update hint/solution