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 |
Tags
- SQL 날짜 데이터
- sigmoid
- CASE
- t분포
- 자연어 논문
- 자연어 논문 리뷰
- LSTM
- 설명의무
- HackerRank
- 논문리뷰
- torch
- 서브쿼리
- leetcode
- sql
- 자연어처리
- NLP
- update
- SQL코테
- 카이제곱분포
- inner join
- airflow
- 코딩테스트
- 표준편차
- 그룹바이
- MySQL
- 짝수
- nlp논문
- GRU
- Window Function
- Statistics
Archives
- Today
- Total
목록__str__(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