list
거래소별 cvs파일 받아오기
kospihttp://pydata.tistory.com/2 nasdaqhttps://stackoverflow.com/questions/25338608/download-all-stock-symbol-list-of-a-market
list에서 짝수 홀수 출력하기
Reference : http://desk.stinkpot.org:8080/tricks/index.php/2007/10/extract-odd-or-even-elements-from-a-python-list/ 제가 채택한 방법은요, x = range(1, 10)x[::2]x[1::2]