Computer Science, asked by sumanlatapanda, 3 months ago

What will be the output of the
following
print(10 in [1,2,3])​

Answers

Answered by atrs7391
0

Given Program:

print(10 in [1,2,3])​

Output:

False

Explanation:

The output is False because there is no 10 in the list containing 1, 2, 3.

Similar questions