MCQ Practice Single Best Answer Topic: Python List MCQ

Q What will be the output after the following statements?
x = 'Python'
y = 'y' in x
print(y)

Question ID
#3477
Subchapter
Python List MCQ
Action
Choose one option below

Choose Your Answer

Click an option to check whether your answer is correct.

  • A [1]
  • B y
  • C True
  • D False
Correct Answer: C

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

Share this MCQ with your friends or study group.