str.find(찾을 문자) str 에서 사용 찾는 문자가 없으면 -1 출력 str.find('x',0,3) : list에서 0부터 3까지 사이에서만 x를 find
list.index(찾을 문자) str, list, tuple 에서 사용 찾는 문자가 없으면 ValueError