일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- PostgreSQL
- JS
- 아틀라시안
- java
- 데이터베이스
- 파이썬
- 우분투
- 스크립트
- Windows
- 3.0
- 자바스크립트
- DATABASE
- javascript
- Linux
- hamonikr
- script
- 설치
- 설정
- 윈도우
- 자바
- install
- DB
- 노드
- Atlassian
- 하모니카
- python
- postgres
- node
- ubuntu
- 리눅스
- Today
- Total
목록전체 글 (191)
LukeHan 의 잡다한 기술 블로그
#!/usr/bin/python3 import socket def fnt_internet(self, host, port, timeout): try: socket.setdefaulttimeout(timeout) socket.socket(socket.AF_INET, socket.SOCK_STREAM).connect((host, port)) return True except Exception as ex: print(ex) return False print(fnt_internet("8.8.8.8", 80, 3))
참고 https://gomguard.tistory.com/122 https://wayhome25.github.io/python/2017/02/26/py-12-exception/ # try-except 문 def safe_pop_print(list, index): try: print(list.pop(index)) except IndexError: print('{} index의 값을 가져올 수 없습니다.'.format(index)) safe_pop_print([1,2,3], 5) # 5 index의 값을 가져올 수 없습니다. # if 문 def safe_pop_print(list, index): if index < len(list): print(list.pop(index)) else: print('{} in..
※ 해당 문서는 파이썬 3.x 버전을 기준으로 작성되었습니다. 2.x 버전과 차이가 있습니다. str to int s = "1234" n = int(s) int to str n = 1234 s = str(n) str to float s = "1234.56" flo = float(s)
strip 문자열의 앞과 뒤에 있는 스페이스, 탭 문자, 줄 바꿈(\r 또는 \n)을 삭제할 수 있습니다. s = ' x ' print(s.strip()) # => 'x' lstrip 문자열의 왼쪽만 삭제합니다. 스페이스, 탭 문자, 줄 바꿈(\r 또는 \n)을 삭제할 수 있습니다. s = ' x ' print(s.lstrip()) # => 'x ' rstrip 문자열의 오른쪽만 삭제합니다. 스페이스, 탭 문자, 줄 바꿈(\r 또는 \n)을 삭제할 수 있습니다. s = ' x ' print(s.rstrip()) # => ' x'
참고 : https://python.bakyeono.net/chapter-11-3.html#1132-%EB%82%A0%EC%A7%9C%EC%99%80-%EC%8B%9C%EA%B0%81 import time from datetime import date, time, datetime today = date.today().strftime('%Y%m%d') time = datetime.now().strftime('%H%M%S') print(today) print(time) # 두 날짜 차이 계산 get_date = date(2020, 2, 10) diff_day = int(str(date.today() - get_date).split(' day')[0]) print(diff_day) 기호 의미 출력 예(2001..
참고 : https://wikidocs.net/16039 원소 추가 # append : 원소 마지막에 추가 a = [1, 2, 3, 4, 5] a.append(6) print(a) [1, 2, 3, 4, 5, 6] # insert : 리스트.index(입력할index, 값) a = [1, 2, 3] a.insert(1, 5) print(a) [1, 5, 2, 3] # + 연산자로 더하기 m = [2, 5, 7] n = [3, 5, 9] k = m + n print(k) [2, 5, 7, 3, 5, 9] k +=[11, 13] print(k) [2, 5, 7, 3, 5, 9, 11, 13] # extend메소드 : 리스트.extend(추가할리스트) a = [1,2,3] a.extend([4,5,6]) pr..