> For the complete documentation index, see [llms.txt](https://woungsub1234.gitbook.io/woungsub-devlog/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://woungsub1234.gitbook.io/woungsub-devlog/programming/python/python-lambda.md).

# Python-lambda.md

***

함수를 딱 한 줄만으로 만들수 있게 해주는 엄청난 녀석을 소개합니다.

## 사용법

```python
lambda 인자 : 표현식
```

```python
lambda x, y : x+y
# equal
def add(x,y):
    return x+y
```
