전체 글 61

[삼성노트] PC에서 사용하기

1. 다운로드 https://www.xda-developers.com/get-samsung-notes-windows-10-app/ Get the Samsung Notes Windows 10 app on any Windows 10 PC If you've ever wanted to download the Samsung Notes application on your Windows 10 PC, now you have a chance, as XDA Senior Member ripped the APPX file. www.xda-developers.com 2. 페이지 이동 2-1. 링크 선택 2-2. 링크 선택하여 다운로드 3. 설치후 업데이트 필수 - 최신 버전으로 업데이트해야지 동기화 가능 (꿀팁!!!)

#1-3 Windows Tip 2022.07.22

[python, 리스트 함수] python list 데이터 추가 및 삭제 함수

list1 = ["kim", "LEE", "PARK"] #1. 리스트 추가 방법 #1-1. 마지막 위치에 저장 : append list1.append("end") # ['kim', 'LEE', 'PARK', 'end'] #1-2. index 위치에 저장 list1.insert(0,111) # [111, 'kim', 'LEE', 'PARK', 'end'] #1-3. 리스트끼리 저장 list2 = ["teran", "protss", "zerg"] list1 = list1 + list2 # [111, 'kim', 'LEE', 'PARK', 'end', 'teran', 'protss', 'zerg'] list1.extend(["22","33"]) # [111, 'kim', 'LEE', 'PARK', 'end',..

[python, 문자열 연산] binding Query -> literal Query 변환 함수 만들기

# in_query = "Query = SELECT * FROM EMP WHERE EQP_NO = :test1, params = 567" # 바인딩 쿼리를 입력하여 비인딩 변수 위치를 검색 # 1) 바인딩 start(':') 찾기 -> 2) 바인딩 변수 end 찾기 -> 3) 끝 위치 찾아서 반환 def get_end_index(input_str, start_index) : end_list = [" ", ",", "+", "-", "/", "*", "=", "%", ">" , " 0 : bind_var = binding_list.pop(0) query_result = input_str[:start_index] + "'" + str(bind_var) + "'"+ input_str[end_index:] in..