πŸ“Š Python
Q. Write the output of the following:
Code:
for l in range(3):
   if l == 2:
      continue
   else:
      print("i",end = " ")
else:
   print("Here")
  • (A) i i i Here
  • (B) i i Here
  • (C) i i i
  • (D) i i Here i
πŸ’¬ Discuss
βœ… Correct Answer: (B) i i Here

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
223
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Manisha Agrawal
Publisher
πŸ“ˆ
89%
Success Rate