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