안녕하세요. 스크립트 작성중에 궁금한게 있어서 글 남겨봐요.
findparent 와
findparents 는 어떻게 다른건가요?
soup.find( 'a', { 'name': section } ).findParents( 'table' )[ 1 ].prettify().encode('utf-8')
soup.find( 'a', { 'name': section } ).findParent( 'table' ).next_sibling.prettify().encode('utf-8')
soup의 a클래스 name은 section으로 부모가 table인것을 찾는건 알겠는데,
[ 1 ]이 붙는것과
next_sibling 동작하는것의 차이점을 모르겠어요.