MCQ Single Best Answer Not Set

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

ID: #3477 Python List MCQ 389 views
Question Info
#3477Q ID
Not SetDifficulty
Python List MCQTopic

Choose the Best Option

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

  • A [1]
  • B y
  • C True
  • D False
Correct Answer: Option 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

Challenge a friend or share with your study group.