Computer Science, asked by bbbpbalu600, 2 months ago

The in operator returns True in the value found in the _______.​

Answers

Answered by CoderRishav
0

Answer:

list , String .

for example -

>>> 'a' in 'apple'

True

>>> 1 in [ 1 ,2 ,3 ]

True

Similar questions