例2.21 map()函数使用示例

点击查看代码
import random
x=random.randint(1e5,1e8)  #生成一个随机整数
y=list(map(int,str(x)))    #提出每位上的数字
z=list(map(lambda x,y: x%2==1 and y%2==0, [1,3,2,4,1],[3,2,1,2]))
print(x); print(y); print(z)


print("学号:2023310143004")

posted on 2024-09-06 15:09  黄元元  阅读(6)  评论(0编辑  收藏  举报