image
-
[Python] BeautifulSoup의 find와 findAll의 차이Python/Python Programming 2020. 1. 15. 09:56
Sample HTML html_str = ''' ''' bs_obj = BeautifulSoup(html_str,'html.parser') find : 첫 번째 태그를 리턴 from bs4 import BeautifulSoup imgtag = bs_obj.find('img') print(imgtag['alt']) --------------------------------------------------- 테스트 이미지_1 findAll : 조건에 해당되는 모든 태그를 리스트로 리턴 from bs4 import BeautifulSoup imgtag = bs_obj.findAll('img') for tag in imgtag: print(tag['alt']) ----------------------------..