python Python中的基本函数编程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python中的基本函数编程相关的知识,希望对你有一定的参考价值。

### Lambda

Syntax: ```lambda arguments: expression```

__Example__
```
# Regular way of creating a function
def add(x, y):
    return x+y
    
add(3, 4) # return 7
    
# We can shorten function creation by using lambda
# lambda will return a function object
add = lambda x, y: x + y

add(3, 4) # return 7
```

### Map
Syntax: ```map(function_object, iterable1, iterable2, ...)```

__Example__
```
def square(x):
    return x*x
    
list(map(square, [1,2,3,4])) # return [1, 4, 9, 16]

# We can shorten the procedure by using lambda
list(map(lambda x: x*x, [1,2,3,4]))
```

### Filter







以上是关于python Python中的基本函数编程的主要内容,如果未能解决你的问题,请参考以下文章

01python中的函数与函数式编程(python函数)

python基础13函数以及函数式编程

Python 函数递归内置函数

Python全栈开发-Day3-Python基础3

python学习之第三天

python函数式编程-------python2.7教程学习廖雪峰版