题目内容

关于大括号{},以下描述正确的是:

A. 直接使用{}将生成一个空元组
B. 直接使用{}将生成一个空集合
C. 直接使用{}将生成一个空列表
D. 直接使用{}将生成一个空字典

查看答案
更多问题

下面代码的输出结果是: dict = {'a': 1, 'b': 2, 'd': '3'}; temp = dict['b'] print(temp)

A. 1
B. {‘b’:2}
C. 3
D. 2

假设dict={'北京':1,'济南':2},则dict['天津'] = dict.get('天津',0)+1的功能是:

A. 此语句错误,因为不存在键为'天津'的键值对
B. 给dict增加一个键值对,键为'天津',值为1
C. 给dict增加一个键值对,键为'天津',值为0

假设dict={'北京':1,'济南':2},则dict['济南'] = dict.get('济南',0)+1的功能是:

A. '济南'的值变为1
B. '济南'的值变为3
C. '济南'的值变为0
D. '济南'的值不变

以下哪遍历字典、依次输出所有键值对里的值的方式是不对的:

A. for key in dict: print(dict[key])
B. for key in dict.keys(): print(dict[key])
C. for key,value in dict.items(): print(value)
D. for value in dict: print(value)

答案查题题库