fork download
  1. #era-
  2.  
  3. a=[]
  4. l=[['insert', 'AAA'], ['insert', 'AAC'], ['find', 'AAA'], ['find', 'CCC'], ['insert', 'CCC'], ['find', 'CCC']]
  5.  
  6. for i in l:
  7. if i[0]=='insert':
  8. a.append(i[1])
  9. elif i[0]=='find':
  10. if a in i[1]:
  11. print('YES')
  12. else:
  13. print('NO')
  14. else:
  15. pass
Runtime error #stdin #stdout #stderr 0.04s 9324KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 10, in <module>
TypeError: 'in <string>' requires string as left operand, not list