如下程序代码执行后,程序的输出是什么?_______Dcountry={"中国":"北京", "美国":"华盛顿", "法国":"巴黎"}Dcountry["中国"]='大北京'Dcountry["德国"]='柏林'print(Dcountry)
A. {'中国':'北京','法国':'巴黎','美国':'华盛顿'}
B. {'中国':'大北京','法国':'巴黎','美国':'华盛顿'}
C. {'中国':'大北京','法国':'巴黎','美国':'华盛顿', '德国':'柏林'}
D. {'中国':'北京','法国':'巴黎','美国':'华盛顿', '德国':'柏林'}
查看答案
已知字典person={‘phone’:’12345678’, ‘age’:20,’name’:’John’}则list(person.values())的结果是什么? __________A)B) ’}{‘phone’, ‘age’,’name’ }C)D)
A. {'12345678', 20, 'John'}
B. {'phone', 'age', 'name'}
C. {'phone':'12345678', 'age':20, 'name': 'John'}
D. ['12345678', 20, 'John']
已知字典person={'phone':'12345678', 'age':20, 'name': 'John'}则list(person.keys())的结果是什么? __________
A. {'phone':'12345678', 'age':20, 'name': 'John'}
B. {'phone', 'age','name'}
C. ['phone', 'age','name']
D. ['phone':'12345678', 'age':20, 'name': 'John']
已知字典person={'phone':'12345678', 'age':20,'name':'John'}则list(person.items())的结果是什么?
A. {'phone':'12345678', 'age':20,'name':'John'}
B. [('phone','12345678'),( 'age',20),('name','John')]
C. [('phone':'12345678'),( 'age':20),('name':'John')]
D. ['phone':'12345678', 'age':20,'name':'John']
已知2020年10月份京东商城手机销量排行榜单中,华为68.2万部,小米52.5万部,Apple35.9万部,用一个列表phonelist来保存这些销量数据,即phonelist=[('华为',68.2), ('小米':52.5), ('Apple':35.9)],则下列程序语句执行后,变量x和变量y分别是什么?x,y=phonelist [1]
A. x为'华为', y为68.2
B. x为'小米', y为52.5
C. x为68.2, y为'华为'
D. x为52.5, y为'小米'