What is the output of the following Python code:
lis = "12345"
num = "0"
while num in lis:
print(num, end=" ")
a) 1 2 3 4 5
b) 00000...
c) No output
d) 12345
Answers
Answered by
2
Answer:
Option C) No output will be the correct option
■ Cause the syntax given in the above question has a bug
Hope this will help you
please try to mark it as brainliest.....
Answered by
0
Answer:
no output bcox syntax error
Explanation:
Similar questions