当前位置: X题卡 > 所有题目 > 题目详情

Jack    (have)an English dictionary.

查看本题答案

你可能感兴趣的试题

is; is    is ; are    are; is    are; are  
either    also    too    as well  
scores = {'Jack': 90, 'Mike': 80, 'Jay': 85,'Bill': 60}; del scores['Bill']; len(scores) 的结果是6。  scores = {'Jack': 90, 'Mike': 80, 'Jay': 85,'Bill': 60}; s = dict(Jack=90, Mike=80, Jay=85,Bill=60); 则scores == s 判断结果是 False 。  scores = {'Jack': 90, 'Mike': 80, 'Jay': 85,'Bill': 60}; 无法执行命令 scores['Bill']=90; 因为原来的字典中已经有了一个值为 90了。  scores = {'Jack': 90, 'Mike': 80, 'Jay': 85,'Bill': 60}; sorted(scores.keys()) 的运算结果是['Bill', 'Jack', 'Jay', 'Mike']  
in; in    at; with    on; on    of; in  
dict1 = {}  dict2 = { 3 : 5 }  dict3 = {[1,2,3]: “uestc ”}  dict4 = {(1,2,3): “uestc ”}  
such; exciting    so; exciting    such; excited    so; excited  
English    last    first    color  
So is    It is the same with    It is so with    So does  
Its    He’s    She’s    It’s  
an    a    the    /  
except  besides  but  except for  
speaks    speak    says    say  
dict = {}  dict = {(4,5,6):'dictionary'}  dict= {4 :6}  dict = {[4,5,6]:'dictionary'}