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
- xPlatform
- Express
- Java
- react
- R
- table
- hadoop
- SQL
- 보조정렬
- Kotlin
- Eclipse
- SPC
- IntelliJ
- Spring
- MSSQL
- vaadin
- 공정능력
- Sqoop
- mybatis
- Android
- GIT
- mapreduce
- Python
- JavaScript
- NPM
- window
- SSL
- tomcat
- es6
- plugin
Archives
- Today
- Total
728x90
목록클래스 (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
728x90