登录
注册
首页
->
python程序设计
下载题库
表达式 list(map(lambda x: x+5, [1, 2, 3, 4, 5])) 的值为____________。
答:([6, 7, 8, 9, 10])
继续答题:
下一题
更多python程序设计试题
1
表达式chr(ord(‘a’)^32^32)的值为_______。
2
已知函数定义 def func(*p):return sum(p),那么表达式 func(1,2,3, 4) 的值为__。