001. my note @ # Since find() returns tag object, # so, I can use text attribute BeautifulSoup.find(id="articleBodyContents").text # Sicne select() returns list, # so, I can't use text attribute # But this way is convinient, # for selecting descendant and child element consecutively BeautifulSoup.select("#articleBodyContents")