Computer Science

The operator …………… tells if an element is present in a sequence or not.

  1. exists
  2. in
  3. into
  4. inside

Python List Manipulation

6 Likes

Answer

in

Reason — in is membership operator which returns True if a character or a substring exists in the given string else returns False.

Answered By

4 Likes


Related Questions