Notice
Recent Posts
Recent Comments
Link
160x600
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Oracle
- sklearn
- 머신러닝
- keras
- 딥러닝
- 크롤링(crawling)
- 훈련
- python기초
- HeidiSQL
- Deep Learning
- 데이터전처리
- SQL예제
- Database
- 회귀모델
- tensorflow
- MariaDB
- pandas
- 시각화
- 정확도
- 데이터 수집
- 데이터 분석
- 해석
- python
- 데이터 가공
- 데이터베이스
- pythone
- DB
- sql
- 데이터
- 예측
Archives
- Today
- Total
목록유니코드 (1)
코딩헤딩

1. 유니코드 *문자열을 UTF-8로 인코딩하기 text = "안녕하세요" encode_text = text.encode("utf-8") encode_text 결과 : b'\xec\x95\x88\xeb\x85\x95\xed\x95\x98\xec\x84\xb8\xec\x9a\x94' *문자열을 UTF-8로 디코딩하기 decode_text = encode_text.decode("utf-8") decode_text 결과 : '안녕하세요' 2. 클로저 ### 클로저 함수 정의하기 def outer_function(x): # 내부 함수 정의 : 실제 실행되는 함수 def inner_function(y): s = x+y return s return inner_function ### 클로저 함수 호출하기 closur..
python
2023. 11. 14. 22:39