有字典如:fruit={“name”:”apple”,”color”:”red”,”weight”:200},操作fruit.keys()的结果是:( )
A: dict_keys(['name', 'color', 'weight'])
B: 其余都不对
C: dict_items([('name', 'apple'), ('color', 'red'), ('weight', 200)])
D: dict_values(['apple', 'red', 200])
A: dict_keys(['name', 'color', 'weight'])
B: 其余都不对
C: dict_items([('name', 'apple'), ('color', 'red'), ('weight', 200)])
D: dict_values(['apple', 'red', 200])
举一反三
- 字典fruit={'apple':'red','peach':'pink','lemon':'orange'},fruit['lemon']的结果是( )。 A: 'pink' B: 'red' C: 'orange' D: Orange
- 以下程序的输出结果:( ) A: <;class 'dict'>;<;class 'dict_values'>;<;class 'dict_keys'>; B: <;class 'dict'>; C: <;class 'dict'>;<;class 'dict'>;<;class 'dict'>; D: <;class 'dict'>;NoneNone
- 以下选项,输出结果为True的是( )。 A: "BC" in "ABCD" B: >>> "red" in {"apple":"red","lemon":"yellow","grape":"purple"} C: >>> "apple":"red" in {"apple":"red","lemon":"yellow","grape":"purple"} D: [2,3] in [1,2,3,4]
- 下面哪个运用了ID选择器( )。 A: a{color:red;} B: red{color:red;} C: D: red{color:red;} E: [att=red]{color:red;}
- 标签结构为 A: {color:red;} B: pa{color:red} C: p.testpa{color:red;} D: p.testp>a{color:red;}