if 'o' in 'WoOoW': print('Exist') else: print('Not exist')
What is the output of the above code?
Exist
Not exist
Error