Python刷题系列(3)_lambda函数(上)

简介: 编写一个 Python 程序来创建一个 lambda 函数,该函数将 15 作为参数传入的给定数字相加,还创建一个 lambda 函数,将参数 x 与参数 y 相乘并打印结果。

Python Lambda



1、创建一个 lambda 函数


编写一个 Python 程序来创建一个 lambda 函数,该函数将 15 作为参数传入的给定数字相加,还创建一个 lambda 函数,将参数 x 与参数 y 相乘并打印结果。

r = lambda a : a + 15
print(r(10))
r = lambda x, y : x * y
print(r(12, 4))
'''
25
48
'''


2、接受一个参数的函数,且该参数乘以给定数字


编写一个Python程序来创建一个接受一个参数的函数,该参数将乘以未知的给定数字。

def func_compute(n):
 return lambda x : x * n
result = func_compute(2)
print("Double the number of 15 :", result(15))
result = func_compute(3)
print("Triple the number of 15 :", result(15))
result = func_compute(4)
print("Quadruple the number of 15 :", result(15))
result = func_compute(5)
print("Quintuple the number 15 :", result(15))
'''
Double the number of 15 : 30
Triple the number of 15 : 45
Quadruple the number of 15 : 60
Quintuple the number 15 : 75
'''

3、使用 Lambda 对元组列表进行排序



编写一个 Python 程序,使用 Lambda 对元组列表进行排序。

元组的原始列表:

[(‘English’, 88), (‘Science’, 90), (‘Maths’, 97), (‘Social sciences’, 82)]

排序元组列表:

[(‘Social Sciences’, 82), (‘English’, 88), (‘Science’, 90), (‘Maths’, 97)]


方法一:使用sort函数

subject_marks = [('English', 88), ('Science', 90), ('Maths', 97), ('Social sciences', 82)]
print("Original list of tuples:")
print(subject_marks)
subject_marks.sort(key = lambda x: x[1])
print("\nSorting the List of Tuples:")
print(subject_marks)
'''
Original list of tuples:
[('English', 88), ('Science', 90), ('Maths', 97), ('Social sciences', 82)]
Sorting the List of Tuples:
[('Social sciences', 82), ('English', 88), ('Science', 90), ('Maths', 97)]
'''

这里使用sort函数中的参数key:

关于参数key :为函数,指定取待排序元素的哪一项进行排序,函数用上面的例子来说明,代码如下:

students  =  [( 'john' ,  'A' ,  15 ), ( 'jane' ,  'B' ,  12 ), ( 'dave' ,  'B' ,  10 )]
sorted (students, key = lambda  student : student[ 2 ])

key指定的lambda函数功能是去元素student的第三个域(即:student[2]),因此sorted排序时,会以students所有元素的第三个域来进行排序

方法二:使用sorted函数

subject_marks = [('English', 88), ('Science', 90), ('Maths', 97), ('Social sciences', 82)]
print("Original list of tuples:")
print(subject_marks)
a=sorted(subject_marks,key = lambda x: x[1])
print("\nSorting the List of Tuples:")
print(a)
'''
Original list of tuples:
[('English', 88), ('Science', 90), ('Maths', 97), ('Social sciences', 82)]
Sorting the List of Tuples:
[('Social sciences', 82), ('English', 88), ('Science', 90), ('Maths', 97)]
'''


4、使用 Lambda 对字典列表进行排序


编写一个 Python 程序来使用 Lambda 对字典列表进行排序。

models = [{'make':'Nokia', 'model':216, 'color':'Black'}, 
          {'make':'Mi Max', 'model':2, 'color':'Gold'}, 
          {'make':'Samsung', 'model': 7, 'color':'Blue'}]
print("Original list of dictionaries :")
print(models)
sorted_models = sorted(models, key = lambda x: x['model'])
print("\nSorting the List of dictionaries :")
print(sorted_models)
'''
Original list of dictionaries :
[{'make': 'Nokia', 'model': 216, 'color': 'Black'}, {'make': 'Mi Max', 'model': 2, 'color': 'Gold'}, {'make': 'Samsung', 'model': 7, 'color': 'Blue'}]
Sorting the List of dictionaries :
[{'make': 'Mi Max', 'model': 2, 'color': 'Gold'}, {'make': 'Samsung', 'model': 7, 'color': 'Blue'}, {'make': 'Nokia', 'model': 216, 'color': 'Black'}]
'''

对于字典的排序,就不能使用对元组的排序sort了,而是需要使用sorted函数。

sorted() 函数对所有可迭代的对象进行排序操作:

sorted(iterable, cmp=None, key=None, reverse=False)


sort 与 sorted 区别:

1、sort 是应用在 list 上的方法,sorted 可以对所有可迭代的对象进行排序操作。

2、list 的 sort 方法返回的是对已经存在的列表进行操作,无返回值,而内建函数 sorted 方法返回的是一个新的 list,而不是在原来的基础上进行的操作。


【iterable】 可迭代对象。


【cmp】 比较的函数,这个具有两个参数,参数的值都是从可迭代对象中取出,此函数必须遵守的规则为,大于则返回1,小于则返回-1,等于则返回0。(一般省略)


【key】主要是用来进行比较的元素,只有一个参数,具体的函数的参数就是取自于可迭代对象中,指定可迭代对象中的一个元素来进行排序。

常用的用来作为参数key的函数有 lambda函数和operator.itemgetter()

尤其是列表元素为多维数据时,需要key来选取按哪一位数据来进行排序


【reverse】 排序规则,reverse = True 降序 , reverse = False 升序(默认)。


5、使用 Lambda 过滤整数列表


编写一个 Python 程序来使用 Lambda 过滤整数列表。

nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print("Original list of integers:")
print(nums)
print("\n偶数:")
even_nums = list(filter(lambda x: x%2 == 0, nums))
print(even_nums)
print("\n奇数:")
odd_nums = list(filter(lambda x: x%2 != 0, nums))
print(odd_nums)
'''
Original list of integers:
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
偶数:
[2, 4, 6, 8, 10]
奇数:
[1, 3, 5, 7, 9]
'''

如果不是匿名函数的写法:

def is_odd(n):
    return n%2 == 1
lst1 = list(filter(is_odd,[1,2,3,4,5,6,7,8,9,10]))
print(lst1)
'''
[1, 3, 5, 7, 9]
'''

【1】filter

filter()函数用于过滤序列,过滤掉不符合条件的元素,返回符合条件的元素组成新列表。


filter()函数是python内置的另一个有用的高阶函数


filter()函数接收一个函数f和一个list


这个函数f的作用是对每个元素进行判断,返回True或False


filter()根据判断结果自动过滤掉不符合条件的元素


返回由符合条件元素组成的新list


3.7.3版filter需要嵌套在list里面

filter(function,iterable) 
# 其中function为函数,iterable为序列


6、使用 Lambda 查找是否以给定字符开头


编写一个 Python 程序,以使用 Lambda 查找给定字符串是否以给定字符开头。

starts_with = lambda x: True if x.startswith('P') else False
print(starts_with('Python'))
starts_with = lambda x: True if x.startswith('P') else False
print(starts_with('Java'))
'''
True
False
'''

关于startswith函数,返回的是布尔值:

print('Java'.startswith('P'))
'''
False
'''


7、使用 Lambda 提取年、月、日期和时间


编写一个 Python 程序,使用 Lambda 提取年份、月份、日期和时间。

import datetime
now = datetime.datetime.now()
print(now)
year = lambda x: x.year
month = lambda x: x.month
day = lambda x: x.day
t = lambda x: x.time()
print(year(now))
print(month(now))
print(day(now))
print(t(now))
'''
2022-05-08 09:58:33.843320
2022
5
8
09:58:33.843320
'''


8、使用 Lambda 创建 Fibonacci


编写一个Python程序,使用Lambda创建Fibonacci系列,直到n。

from functools import reduce
fib_series = lambda n: reduce(lambda x, _: x+[x[-1]+x[-2]],
                                range(n-2), [0, 1])
print("Fibonacci series upto 2:")
print(fib_series(2))
print("\nFibonacci series upto 5:")
print(fib_series(5))
print("\nFibonacci series upto 6:")
print(fib_series(6))
print("\nFibonacci series upto 9:")
print(fib_series(9))
'''
Fibonacci series upto 2:
[0, 1]
Fibonacci series upto 5:
[0, 1, 1, 2, 3]
Fibonacci series upto 6:
[0, 1, 1, 2, 3, 5]
Fibonacci series upto 9:
[0, 1, 1, 2, 3, 5, 8, 13, 21]
'''

2】reduce

reduce的语法格式

reduce(function, sequence[, initial]) -> value

reduce函数接受一个function和一串sequence,并返回单一的值,以如下方式计算:


初始,function被调用,并传入sequence的前两个items,计算得到result并返回

function继续被调用,并传入上一步中的result,和sequence种下一个item,计算得到result并返回。一直重复这个操作,直到sequence都被遍历完,返回最终结果。

initial:指定的初始值

注意1: 当initial值被指定时,传入step1中的两个参数分别是initial值和sequence的第一个items。reduce()最多只能接受三个参数,func,sequence,initial。

注意2:在python2中reduce时内置函数,但是在python3中,它被移到functools模块,因此使用之前需要导入。


9、使用 Lambda 查找两个给定数组的交集


编写一个 Python 程序,使用 Lambda 查找两个给定数组的交集。

array_nums1 = [1, 2, 3, 5, 7, 8, 9, 10]
array_nums2 = [1, 2, 4, 8, 9]
print("Original arrays:")
print(array_nums1)
print(array_nums2)
result = list(filter(lambda x: x in array_nums1, array_nums2)) 
# 这里的第二个参数是filter的参数
print ("\nIntersection of the said arrays: ",result)
'''
Original arrays:
[1, 2, 3, 5, 7, 8, 9, 10]
[1, 2, 4, 8, 9]
Intersection of the said arrays:  [1, 2, 8, 9]
'''


10、使用 Lambda 对数组中奇偶数进行计数


编写一个 Python 程序,以使用 Lambda 重新排列给定数组中的正数和负数。

array_nums = [1, 2, 3, 5, 7, 8, 9, 10]
print("Original arrays:")
print(array_nums)
odd_ctr = len(list(filter(lambda x: (x%2 != 0) , array_nums)))
even_ctr = len(list(filter(lambda x: (x%2 == 0) , array_nums)))
print("\nNumber of even numbers in the above array: ", even_ctr)
print("\nNumber of odd numbers in the above array: ", odd_ctr)
'''
Original arrays:
[1, 2, 3, 5, 7, 8, 9, 10]
Number of even numbers in the above array:  3
Number of odd numbers in the above array:  5
'''


11、使用 Lambda 在给定列表中查找长度为 6 的值


编写一个 Python 程序,以使用 Lambda 查找给定列表中长度为 6 的值。

weekdays = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday']
days = filter(lambda day: day if len(day)==6 else '', weekdays)
for d in days:
  print(d)
'''
Monday
Friday
Sunday
'''


12、使用map和lambda添加两个给定列表


编写一个Python程序,使用map和lambda添加两个给定的列表。

nums1 = [1, 2, 3]
nums2 = [4, 5, 6]
print("Original list:")
print(nums1)
print(nums2)
result = map(lambda x, y: x + y, nums1, nums2)
print("\nResult: after adding two list")
print(list(result))
'''
Original list:
[1, 2, 3]
[4, 5, 6]
Result: after adding two list
[5, 7, 9]
'''

【3】map

map是python内置函数,会根据提供的函数对指定的序列做映射。

map()函数的格式是:

map(function,iterable,...)


1、第一个参数接受一个函数名,后面的参数接受一个或多个可迭代的序列,返回的是一个集合。

2、把函数依次作用在list中的每一个元素上,得到一个新的list并返回。

3、map不改变原list,而是返回一个新list。


13、使用 Lambda 查找可被19或13整除的数字


编写一个Python程序,从使用Lambda的数字列表中查找可被十九或十三整除的数字。

nums = [19, 65, 57, 39, 152, 639, 121, 44, 90, 190]
print("Orginal list:")
print(nums) 
result = list(filter(lambda x: (x % 19 == 0 or x % 13 == 0), nums)) 
print("\nNumbers of the above list divisible by nineteen or thirteen:")
print(result)
'''
Orginal list:
[19, 65, 57, 39, 152, 639, 121, 44, 90, 190]
Numbers of the above list divisible by nineteen or thirteen:
[19, 65, 57, 39, 152, 190]
'''


相关文章
|
26天前
|
Python
Python之函数详解
【10月更文挑战第12天】
Python之函数详解
|
26天前
|
存储 数据安全/隐私保护 索引
|
16天前
|
测试技术 数据安全/隐私保护 Python
探索Python中的装饰器:简化和增强你的函数
【10月更文挑战第24天】在Python编程的海洋中,装饰器是那把可以令你的代码更简洁、更强大的魔法棒。它们不仅能够扩展函数的功能,还能保持代码的整洁性。本文将带你深入了解装饰器的概念、实现方式以及如何通过它们来提升你的代码质量。让我们一起揭开装饰器的神秘面纱,学习如何用它们来打造更加优雅和高效的代码。
|
18天前
|
弹性计算 安全 数据处理
Python高手秘籍:列表推导式与Lambda函数的高效应用
列表推导式和Lambda函数是Python中强大的工具。列表推导式允许在一行代码中生成新列表,而Lambda函数则是用于简单操作的匿名函数。通过示例展示了如何使用这些工具进行数据处理和功能实现,包括生成偶数平方、展平二维列表、按长度排序单词等。这些工具在Python编程中具有高度的灵活性和实用性。
|
21天前
|
Python
python的时间操作time-函数介绍
【10月更文挑战第19天】 python模块time的函数使用介绍和使用。
26 4
|
22天前
|
存储 Python
[oeasy]python038_ range函数_大小写字母的起止范围_start_stop
本文介绍了Python中`range`函数的使用方法及其在生成大小写字母序号范围时的应用。通过示例展示了如何利用`range`和`for`循环输出指定范围内的数字,重点讲解了小写和大写字母对应的ASCII码值范围,并解释了`range`函数的参数(start, stop)以及为何不包括stop值的原因。最后,文章留下了关于为何`range`不包含stop值的问题,留待下一次讨论。
17 1
|
28天前
|
索引 Python
Python中的其他内置函数有哪些
【10月更文挑战第12天】Python中的其他内置函数有哪些
15 1
|
22天前
|
安全 数据处理 数据安全/隐私保护
python中mod函数怎么用
通过这些实例,我们不仅掌握了Python中 `%`运算符的基础用法,还领略了它在解决实际问题中的灵活性和实用性。在诸如云计算服务提供商的技术栈中,类似的数学运算逻辑常被应用于数据处理、安全加密等关键领域,凸显了基础运算符在复杂系统中的不可或缺性。
16 0
|
28天前
|
开发者 索引 Python
Python中有哪些内置函数
【10月更文挑战第12天】Python中有哪些内置函数
18 0
|
1天前
|
存储 Python
Python编程入门:打造你的第一个程序
【10月更文挑战第39天】在数字时代的浪潮中,掌握编程技能如同掌握了一门新时代的语言。本文将引导你步入Python编程的奇妙世界,从零基础出发,一步步构建你的第一个程序。我们将探索编程的基本概念,通过简单示例理解变量、数据类型和控制结构,最终实现一个简单的猜数字游戏。这不仅是一段代码的旅程,更是逻辑思维和问题解决能力的锻炼之旅。准备好了吗?让我们开始吧!