일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Crawling
- opencv
- 크롤링
- adaptive life cycle
- 다나와
- javascript
- algorithm
- 프로젝트
- Agile
- pandas
- Project
- tensorflow
- angular
- AWS
- data analyze
- visualizing
- instance
- DANAWA
- data
- webcrawling
- Method
- ECS
- TypeScript
- 자바스크립트
- python
- Scrum
- matplotlib
- keras
- 애자일
- analyzing
Archives
- Today
- Total
목록Def (1)
LiJell's 성장기
04.python_def_lambda_map
modified on Wed Dec 29 \#-*- coding: utf-8 -*- """ Created on Wed Dec 15 15:23:14 2021 @author: hanju """ 사용자 정의 함수 사용자가 정희하는 함수의 형태 input과 output 관계를 내부에 정의 def, lamda(축약형) 함수 정의 f(x) = x+1 1. def 방식 \# def 함수이름(인수1, 인수2, 인수3): \# 함수 본문 \# return 반환할 객체 숫자를 넣어서 곱하기 10한 값을 반환 def f_mul(x): a1=x*10 return a1 f_mul(100) 1000 두 숫자(두개의 인자를 함수에 넣는구나) 넣어서 두 숫자의 곱 반환 def f_2_mul(x,y): a2=x*y return a2 ..
Bigdata/파이썬_Python
2021. 12. 15. 17:39