无论在执行程序中是否发生异常,都会执行上下文管理器的()方法。
A. __enter__()
B. __exit__()
C. __into__()
D. __out__()。
阅读下面的代码a = map(lambda x,y:x+y,[1,2,3],[2,3,4])print(list(a))程序的输出结果为()
A. [1,2,3]
B. [2,3,4]
C. (2,5,7)
D. [3,5,7]
下列选项中,不能作为map函数的参数的是()。
A. [1,2,3]
B. (1,2,3)
C. 10
D. "hello"