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
- 그룹바이
- update
- t분포
- HackerRank
- SQL 날짜 데이터
- torch
- sql
- LSTM
- NLP
- 자연어 논문 리뷰
- Statistics
- airflow
- CASE
- 코딩테스트
- 자연어 논문
- leetcode
- GRU
- SQL코테
- sigmoid
- 설명의무
- 자연어처리
- 카이제곱분포
- Window Function
- MySQL
- 서브쿼리
- 논문리뷰
- 짝수
- 표준편차
- inner join
- nlp논문
Archives
- Today
- Total
목록__repr__(self) (1)
HAZEL
[ Python : Class & Method ] 객체 지향 프로그래밍 , 클래스 , __str__(self) , __repr__(self) , 클래스 변수 , 인스턴스 변수, 클래스 메소드, 인스턴스 메소드, 스테이틱 메소드
Chapter 01 : 객체 지향 프로그래밍 : 객체 지향 프로그래밍 ( oop ) 는 코드의 재사용 ,코드 중복 방지 등의 장점이 있다. 1. 객체지향적이지 않은, 날것으로 코딩을 하기 # 리스트 구조 student_names_list = ['Kim','Lee','Park'] student_numbers_list = [1,2,3] student_grades_list = [1,2,4] student_details_list = [ {'gender':'Male', 'score1':95 , 'score2' : 88}, {'gender':'FeMale', 'score1':77 , 'score2' : 88}, {'gender':'Male', 'score1':95 , 'score2' : 88}, ] # 삭제 del..
PROGRAMMING/Python
2021. 5. 23. 17:55