Python(14)
-
Python 파이썬 16진수에서 10진수, 2진수를 10진수로, 8진수를 10진수로
print("16진수를 10진수로") print("int('0xea',16) --> ",int('0xea',16)) print("2진수를 10진수로") print("int('1111',2) --> ",int('1111',2)) print("8진수를 10진수로") print("int('0o22',8) --> ",int('0o22',8))
2020.04.10 -
Python 파이썬 네이버검색어 가져오기
패키지 구조 [crawler.py] import requests def crawl(keyword): # 나중에 페이지 관리를 위해 query=aaaaa&88&cxc& 요부분을 처리하기 위함 url = "https://www.naver.com/" data = requests.get(url) print(data.status_code,url) # 페이지 접속 코드 정상 200반환 return data.content [paser.py] def parse(pageString): bsObj = BeautifulSoup(pageString, "html.parser") div = bsObj.find("div", {"class": "ah_list"}) lis = div.findAll("li", {"class":"ah_i..
2020.04.10