Answers for "fruits = ["apple", "banana", "cherry"] for x in fruits: print(x) if x == "banana": break Identify output ?"

0

fruits = ["apple", "banana", "cherry"] for x in fruits: print(x) if x == "banana": break Identify output ?

fruits = ["apple", "banana", "cherry"]
for x in fruits:
  print(x) 
  if x == "banana":
    break
Posted by: Guest on April-20-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language