파이썬3 파이썬(BeautifulSoup)사용해서 주식 데이터 크롤링(가져오기) import requests from bs4 import BeautifulSoup url = 'https://stock.mk.co.kr/domestic/all_stocks?type=kospi&status=industry' # url = 'https://stock.mk.co.kr/domestic/all_stocks?type=kosdaq&status=industry' response = requests.get(url) # print("response",response.text) html = response.text soup = BeautifulSoup(html, 'html.parser')#html형태로 바꾼다. box = soup.select('.row_sty') for idx,a in enumerate(b.. 2023. 7. 8. 파이썬 변수 정수,실수 선언 a=0 b= 0.1 print(a+b) 결과값 0.1 파이썬에 앞에 var나 int를 안붙이고 뒤에도 ;없이 사용 정수형 문자형 선언 및 변환 a = 1 b = "3" print(str(a)+b) print(a+int(b)) 결과값 13 4 문자형으로 바꾸고 싶을 경우 str()로 감싼다. 정수형으로 바꾸고 싶을 경우 int()로 감싼다. 논리형 a = True b = False print(a or b) print(a and b) print(not a) 결과값 True False False 2023. 6. 21. 파이썬 환경설정... GUI 웹프로그래밍 DB 누메릭 = 숫자형 2023. 6. 21. 이전 1 다음