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 | 31 |
Tags
- pandas
- Oracle
- 시각화
- 회귀모델
- Database
- HeidiSQL
- pythone
- python
- DB
- 데이터베이스
- 딥러닝
- 오라클
- 해석
- 훈련
- 데이터 수집
- 데이터
- python기초
- 머신러닝
- Deep Learning
- sql
- 정확도
- 예측
- 데이터전처리
- MariaDB
- sklearn
- 파싱 오류
- tensorflow
- keras
- 데이터 분석
- 데이터 가공
Archives
- Today
- Total
목록unzip (1)
코딩헤딩

1. 기본 구조 숫자의 연산 def twice(x): return x*2 a = 2 b = 3 print(twice(a)) print(twice(b)) 결과 : 4 6 문자 def hello(x): print('hello', x) hello('python') 결과 : hello python 2. zip/ unzip def add_minus(x, y): a = x + y b = x - y return a, b add_minus(5, 7) 결과 : (12, -2) print(type(add_minus(5, 7))) 결과 : a, b = add_minus(7, 8) print(a, b) 결과 : 15 -1 print(type(add_minus(7, 8))) 결과 : 더하기, 빼기 = add_minus(7, 8..
python
2023. 11. 16. 00:13