What is the output of the following code ?
s = [56, 7, 89, 24, 72, 91, 49] if 72 in s: print(True) else: print(False)
True
False
Error
Blank
The "in" operator checks the element available in the list, If yes then it returns True.
As 72 is available is s, it will print True
Comment here: