The students ______ four hours doing the reading assignments. A.spentB.costC.tookD.finished
The students ______ four hours doing the reading assignments.
A.spent
B.cost
C.took
D.finished
相关考题:
1. He used to _______in the sun,but now he is used to _______at night.A. read ; readB. reading ; readC. read; readingD. reading; reading
23. How many hours of sleep is good for students' health?A. Less than 9 hours.B. Over 9 hours.C. Only 9 hours.D. 7 hours.
I prefer _________ a book to _________ a movie. A.reading ...to watchB.to read ...watchingC.to read ...watchD.reading ...watching
在主线程中启动一个子线程执行reading函数。 import threading import time import random def reading(): for i in range(10): print("reading",i) time.sleep(random.randint(1,2)) _______________________________ r.setDaemon(False) r.start() print("The End")A.r=threading.Thread(reading)B.r=threading.Thread(target=reading())C.r=threading.Thread(target=reading)D.r=Thread(target=reading)
创建students对象,_______语句可以选出第二个同学的身高。 students数据如下: age height weight 1 19 170 68 2 20 165 65 3 18 175 65A.students[1,'height']B.students.loc[2,'height']C.students.iloc[1, 1]D.students['height'][3]
创建students对象,_______语句可以选出第二个同学的身高。 students数据如下: age height weight 1 19 170 68 2 20 165 65 3 18 175 65A.students.loc[2,'height']B.students.iloc[1, 1]C.students[1,'height']D.students['height'][3]