Q. What will be the output of the following Python code?

Code:
x = "abcdef"
i = "a"
while i in x:
    print(i, end = " ")
  • (A) no output
  • (B) i i i i i i …
  • (C) a a a a a a …
  • (D) a b c d e f
πŸ’¬ Discuss
βœ… Correct Answer: (C) a a a a a a …

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
229
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Vaibhav Shukla
Publisher
πŸ“ˆ
88%
Success Rate