综合照明是指工作面上照度由一般照明和局部照明共同构成的照明。
查看答案
视野内的观察对象、工作面和周围环境之间最好的亮度比为5 ∶ 2 ∶ 1。
A. 对
B. 错
下列方法中,用于在字符串中查找子串的是()。
A. find
B. count
C. index
D. replace
阅读下面一段程序:nwords="Hello,Python"index=words.index("Py",0,6)print(index)运行程序,最终执行的结果为()。
A. 5
B. 6
C. 7
D. 程序出现ValueError异常
阅读下面一段程序:words="Hello,Python"result=words.capitalize()result_another=words.title()print(result)print(result_another)运行程序,最终输出的结果为()。
A. hello,Python,Hello,Python
B. hello,python,hello,python
C. Hello,python,Hello,python
D. Hello,python,hello,python。