Computer Science, asked by rkrkrks9564, 5 months ago

name the membership operator used in python​

Answers

Answered by asitpaul2015ap
3

Answer:

Two membership operators exist in Python: in – evaluates to True if the value in the left operand appears in the sequence found in the right operand. For example, 'Hello' in 'Hello world' returns True because the substring Hello is present in the string Hello world!.

Answered by Nivedita260207
0

Answer:

the two membership operators in python are

in and not in

Explanation:

Similar questions