Python
python_07: Functions 함수,lambda,map,zip
Nova
2021. 2. 1. 22:21
python_07: Functions 함수,lambda,map,zip
docs.python.org/3/library/functions.html
Built-in Functions — Python 3.9.1 documentation
Built-in Functions The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order. abs(x) Return the absolute value of a number. The argument may be an integer, a floating poin
docs.python.org
.Lambda function 은 anonymous function 이다
.파라미터는 많아도 상관없지만, 연산은 딱 한줄이어야 한다
*map()
그 안에 함수명과 리스트 들을 전달하여, 리스트를 함수의 파라미터로 전달할 수 있게 한다