Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Android
- vaadin
- Kotlin
- MSSQL
- IntelliJ
- Java
- window
- NPM
- es6
- Spring
- tomcat
- 공정능력
- hadoop
- Eclipse
- R
- Sqoop
- Express
- SPC
- plugin
- mybatis
- Python
- xPlatform
- mapreduce
- react
- GIT
- SQL
- SSL
- table
- 보조정렬
- JavaScript
Archives
- Today
- Total
반응형
목록클래스 (1)
DBILITY
python class
내부 메써드 작성할 때 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..
python
2021. 8. 19. 15:29
반응형