Q.

What is the output for the following code:
languages = ["java", "c++", "python"]
for x in languages :
if x == "c++":
continue
print(x)

A. java
B. java python
C. java c++ python
D. c++ python
Answer» B. java python

View all MCQs in

Python

Discussion

No comments yet