网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

I have finished()your project plan.

A. read

B. to read

C. reading


参考答案

更多 “ I have finished()your project plan.A. readB. to readC. reading ” 相关考题
考题 3. —Come and join us,Jimmy !—I-m sorry,but I-m really busy now.lf I _______ time,l would certainly go.A. will haveB. have hadC. hadD. have

考题 7. Hi! This is_______ new teacher.__________ name is Linda.A. your; MyB. his; YourC. your ; HerD. her; His

考题 Nice to meet____(your).

考题 If only we______(have)a phone! I'm tired of waiting outside the public phone box.

考题 -Would you like to go to the cinema?-I'd _____to go to the museum.A. ratherB. PreferC. have

考题 —I'd met Smith several times before.—So (have) ( ) I.

考题 What a waste! Why do you () the water () all the time ? A、have…flowingB、have…flowC、have…to flowD、have…flowed

考题 What's ( )job? Are ( ) British?A. your, yourB. you, yourC. your, you

考题 ( ) – Is Miss White __________ English teacher, Maria?– No, she teaches __________ geography.A.your;myB.you;mineC.you;usD.your;us

考题 在主线程中启动一个子线程执行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)