일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- NPM
- SQL
- GIT
- 공정능력
- JavaScript
- es6
- Kotlin
- mybatis
- plugin
- SPC
- Eclipse
- SSL
- R
- Android
- window
- Sqoop
- Express
- 보조정렬
- mapreduce
- vaadin
- react
- IntelliJ
- xPlatform
- hadoop
- Python
- Java
- table
- MSSQL
- tomcat
- Spring
- Today
- Total
목록python (24)
DBILITY
내부 메써드 작성할 때 argument로 self는 기본인가? __init__는 생성자, __del__은 소멸자겠지(?) ####################################################################################### class Avenger: def __init__(self, name="", role="", tribe=""): # initializer, constructor? self.name = name self.role = role self.tribe = tribe print(f'{self} initialization') def __del__(self): print(f'{self} Destructor called, {self} delete..
특정 디렉토리의 파일 목록을 조회, 이름변경, 복사를 해봤다. os, shutil을 사용. 문자열 앞에 r이나 R을 붙이면 백슬래시(\)가 문자로 인식된다.즉, Escape문자로 인식하지 않는다. import os import shutil import uuid # current directory print(os.getcwd()) # A Python raw string is a normal string, prefixed with a r or R. # This treats characters such as backslash (‘\’) as a literal character. # This also means that this character will not be treated as a escape char..
Mock up서버는 훌륭한 분이 개발을 해두어서 사용했다. https://github.com/joon610/mockup-server GitHub - joon610/mockup-server: this is mock server (Vue + TypeScript + Electron) this is mock server (Vue + TypeScript + Electron) - GitHub - joon610/mockup-server: this is mock server (Vue + TypeScript + Electron) github.com Fetch데이터는 아래에서 받았다. https://dummy.restapiexample.com/ Dummy sample rest api - dummy.restapiexampl..
python공식사이트를 참고하고, 다른 언어를 사용하는 경우엔 대충 자동완성을 사용하면 알 수 있음. import time import datetime print(time.time()) # 1629171779.0626843 print(time.ctime(time.time())) #Tue Aug 17 12:42:59 2021 print(time.localtime()) #time.struct_time(tm_year=2021, tm_mon=8, tm_mday=17, tm_hour=12, tm_min=42, tm_sec=59, tm_wday=1, tm_yday=229, tm_isdst=0) print(time.localtime().tm_yday) #229 print(time.localtime().tm_year)..
가장 편한 것은 3.6이상에서 지원하는 세번째겠다. >>> name = 'bean' >>> print('My Name is %s'%name) My Name is bean >>> print('My Name is {}'.format(name)) My Name is bean #3.6 over >>> print(f'My Name is {name}') My Name is bean