Python_Intermediate/JupyterNotebook (2) 썸네일형 리스트형 Magic Commands Line magics%aliasDefine an alias for a system command.‘%alias alias_name cmd’ defines ‘alias_name’ as an alias for ‘cmd’Then, typing ‘alias_name params’ will execute the system command ‘cmd params’ (from your underlying operating system).Aliases have lower precedence than magic functions and Python normal variables, so if ‘foo’ is both a Python variable and an alias, the alias can not be execute.. 190224> Jupyter Notebook으로 확인하는 BeautifulSoup In [32]: #-*- coding: utf-8 -*- from bs4 import BeautifulSoup as bs In [33]: html_doc = """ 초콜릿 과자 사탕 오렌지 """ In [34]: # html 파서를 이용해서 html 형태의 데이터를 읽어온다. soup = bs(html_doc, 'html.parser') In [35]: # 1. td 태그를 모두 찾아서 td_list 담은 후, 루프를 돌리면서 각 td 태그 내용을 출력한다. td_list = soup.find_all('td') In [36]: for td_item in td_list: print(td_item.string) 사탕 오렌지 In [37]: # 2. id 가 choco 인 항목을 찾아서 해당 태그 내용을 출력.. 이전 1 다음