본문 바로가기

[python](error) is not in list 배열 값 중 index를 알아오기 위해 index 함수 사용 시 ValueError: 값 is not in list 에러 발생 해당 에러는 리스트 안에 '값이 없을 때 발생 하기 코드 실행 시 'ValueError: 5 is not in list' 에러 발생 arrVal = [1, 2, 3, 4] print(arrVal.index(5) 예외처리 try : idx = arr.index(val) except ValueError : print("ValueError")
[python] python web crawling 참고 사이트 https://wikidocs.net/85381 0. 머리말 2022년 1월, 비전공자를 위한 파이썬 자동화 완벽 가이드 원고 작업을 시작합니다. wikidocs.net
[python] BeautifulSoup 파이썬을 이용한 웹 크롤링 시 데이터 추출하기 위한 함수 requests 설치 pip install requests BeautifulSoup 설치 pip install beautifulsoup4 파이썬에서 기본 내장함수가 아니라서 import 필요 import requests from bs4 import eautifulSoup 사용법 import requests from bs4 import BeautifulSoup url = 'https://naver.com' res = requests.get(url) if res.status_code == 200: html = res.text soup = BeautifulSoup(html, 'html.parser') print(soup) else : print(res...
[Java] 넘버링 넘버링(Numbering) 방법 - '01', '02'... '10', '11'.... substring 메소드를 사용 substring(인자1, 인자2) 인자1 > 시작지점 index 인자2 > 끝지점 index 두자리 넘버링 두자리 넘버링의 경우 최소 두자리를 표현해야 하기 위해 숫자 앞에 "0"을 붙임 두자리 넘버링을 위해 문자열 뒤에서 2자리만 추출 세자리 넘버링의 경우는 숫자 앞에 "00"을 붙이고 문자열 뒤에서 3자리만 추출 함 // 두자리 for(int i = 0; i < 100; i++) { String str = "0" + i; System.out.println(str.substring(str.length() - 2, str.length()); } // 세자리 for(int i = 0; ..
[MSSQL] 특정 일자 요일 구하기 MSSQL 에서 요일을 구하기 위해서는 DATENAME 또는 DATEPART 함수를 사용 요일 표시 (SQL Server의 언어 설정에 따라서 표시 문구가 변경) 한국어 : '월요일', '화요일'... 영어 : 'Monday', 'Tuesday'... SELECT DATENAME(WEEKDAY, GETDATE()) 요일 숫자 표시 기본은 일요일을 시작으로 순서대로 1(일), 2(월)... SELECT DATEPART(WEEKDAY, GETDATE()) 주차 시작 기준을 일요일에서 월요일로 변경 SET DATEFIRST 1 요일을 원하는 문자로 변경 SET DATEFIRST 1 SELECT CASE WHEN(DATEPART(WEEKDAY, GETDATE()) = '1') THEN '(월)' WHEN(DAT..
[Highcharts] 사용자 버튼 내보내기 버튼 숨기기 사용자 버튼 활성화 여부 chart= Highcharts.chart('container', { chart: { type: 'pie', events: { //load: function () { console.log(this) }, drilldown: function() { if (this.series[0].options._levelNumber != 1 ) { /* hide thirdbutton */ this.exportSVGElements[4].hide(); } //chart.redraw(); // 차트 다시 그리기 }, drillup: function(u) { if (this.series[0].options._levelNumber == 1 ) { /* show thirdbutton ..
[Eclipse] 검색 창 File name patterns 관리 Eclipse 검색 창에서 File name patterns을 검색 시 마다 추가 됨 해당 항목을 삭제하는 방법은 {workspace}.metadata\.plugins\org.eclipse.search\dialog_settings.xml 파일에 서 하기 항목을 제거하고 Eclipse을 재 시작하면 됨
[Etc] 유용한 사이트 ※ 이미지 압축 http://tools.dynamicdrive.com/imageoptimizer/ Online Image Optimizer: Optimize your GIFS, JPGS, and PNGS online. Online Image Optimizer- GIF, JPG, and PNG Image Optimizer lets you easily optimize your gifs, animated gifs, jpgs, and pngs, so they load as fast as possible on your site. Furthermore, you can easily convert from one image type to another. Upload Size limi tools.dynamicdrive...