Single Choice Not Set

QWhat will be the output after the following statements?
x = [24, 50, 37]
y = 24 in x
print(y)

ID: #3475 Python List MCQ 550 views
Question Info
#3475Q ID
Not SetDifficulty
Python List MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A x[0]
  • B [24]
  • C True
  • D False
Correct Answer

Explanation

True

The in keyword has two purposes:

The in keyword is used to check if a value is present in a sequence (list, range, string etc.).

The in keyword is also used to iterate through a sequence in a for loop:

Share This Question

Challenge a friend or share with your study group.