Question
a.
s1.__contains__(s2)
b.
s2 in s1
c.
s1.contains(s2)
d.
si.in(s2)
Posted under Python
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. To check whether string s1 contains another string s2, use
Similar Questions
Discover Related MCQs
Q. If a class defines the __str__(self) method, for an object obj for the class, you can use which command to invoke the __str__ method.
View solution
Q. To return the length of string s what command do we execute ?
View solution
Q. To retrieve the character at index 3 from string s=”Hello” , what command do we execute ?
View solution
Q. What is “Hello”.replace(“l”, “e”)
View solution
Q. Say s=”hello” what will be the return value of type(s) ?
View solution
Q. What will be displayed by print(ord(‘b’) – ord(‘a’)) ?
View solution
Q. What is the output of “hello”+1+2+3 ?
View solution
Q. The format function, when applied on a string returns :
View solution
Q. Suppose s is “\t\tWorld\n”, what is s.strip() ?
View solution
Q. Which of the following statement prints hello\example\test.txt ?
View solution
Q. To concatenate two strings to a third what statements are applicable ?
View solution
Q. Given a string example=”hello” what is the output of example.count(l)
View solution
Q. print(0xA + 0xB + 0xC) :
View solution
Q. What arithmetic operators cannot be used with strings ?
View solution
Q. The output of executing string.ascii_letters can also be achieved by:
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Python? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!