Single Choice
Not Set
QWhat will be the output after the following statements?
x = 'Python'
y = 'y' in x
print(y)
ID: #3477
Python List MCQ
396 views
Question Info
#3477Q ID
Not SetDifficulty
Python List MCQTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
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:
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic