Don't_____him.He is reading an important letter now.
A. disturb
B. disturbing
C. to disturb
第1题:
关于下面函数,哪一个是错误描述?defcount_letter_number(string):letter_count=0digit_count=0forchinstring:
if'a'<=ch<='z'or'A'<=ch<='Z':letter_count+=1elif'0'<=ch<='9':digit_count+=1
returnletter_count,digit_count
A.函数能统计字符串中英文字母出现的次数
B.letter_count+=1可以写做letter_count=letter_count+1
C.letter_count+=1可以写做letter_count++
D.函数能统计字符串中数字出现的次数
第2题:
下面关于CSS样式优先级,正确的是
A.!important > id > class > tag
B.id> !important > class > tag
C.!important > tag > class > id
D.tag> id > class > !important
第3题:
对孤立体系而言,其熵流(deS)和熵产生(diS)分别是: ()
A.deS=0, diS<0
B.deS<0, diS=0
C.deS=0, diS≥0
D.deS≥0, diS=0
第4题:
下列关于CSS重要性的说法中正确的是()
A.!important要写在分号“;”的前面
B.!important要写在相关属性值的前面
C.!important权值为1000
D.!important只能应用与字体样式设置
第5题:
提升选择器样式重要性的代码正确的是()
A..green{ color:green!important; }
B..green{ !important color:green; }
C..green!important{ color:green!important; }
D..green{ color:green; }!important;
第6题:
CSS优先级说法正确的是?
A.!important > id > class > tag
B.!important < id < class < tag
C.!important>class>id>tag
D.!important>tag>id>class