题目内容

阅读下面的程序:class Test(object):count = 100def __init__(self):self.count = 200test = Test()print(test.count)print(Test.count)上述程序最终执行的结果为()。

A. 100 100
B. 200 200
C. 100 200
D. 200 100

查看答案
更多问题

下列转义字符中,表示空转义字符的是()

A. \000
B. \r
C. \n
D. \''

下列选项中,用于处理时间的库是()

A. random
B. time
C. os
D. numpy

无论在执行程序中是否发生异常,都会执行上下文管理器的()方法。

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]

答案查题题库