登录
注册
首页
->
Python编程
下载题库
What gets printed?( )kvps = { 1 : 1, 2 : 2 }theCopy = kvpskvps[1] = 5sum = kvps[1] + theCopy[1]print sum
(A)1
(B)2
(C)7
(D)10
(E)An exception is thrown
参考答案
继续答题:
下一题
更多Python编程试题
1
下面哪个选项不是π的计算方式()
2
关于 Python 序列类型的通用操作符和函数,以下选项中描述错误的是
3
What gets printed?( )x = Truey = Falsez = Falseif not x or y:print 1elif not x or not y and z:print 2elif not x or y or not y and x:print 3else:print 4
4
python是什么类型的编程语言?
5
下列哪个排序算法的时间复杂度为O(n2) ()
考试