()you prepare cross training plans, you need to consider both the company benefits and the employee benefits.
A. Although
B. Even if
C. As
第1题:
8. _________you _________llikeFrench.
A. Not only ;and '
B. Not only ;but also
C.Not ;butalso
D.Both;but
第2题:
第3题:
你最好控制一下上网聊天的时间。(汉译英)
A.You'd better set a limit for your online chat time.
B.You'd better set a limit on your online chat time.
C.You'd better set a limit on your online chatting time.
D.You'd better set a limit for your online chatting time.
第4题:
第5题:
以下对于列表的相关操作中哪些项有正确的输出结果?
A.>>> language = list('PHP'); >>> language[1:] = 'ython'; >>> print(language) ['P', 'y', 't', 'h', 'o', 'n']#B.>>> print(list('Life is short, you need Python.').count('is')) 1#C.>>> x = [2, 3, 0, 4, 1] >>> x.sort() >>> print(x) [0, 1, 2, 3, 4]#D.>>> words = ['Life', 'is', 'short', 'you', 'need', 'Python'] >>> words.index('you') 4第6题:
以下对于列表的相关操作中哪些项有正确的输出结果?
A.>>> language = list('PHP'); >>> language[1:] = 'ython'; >>> print language ['P', 'y', 't', 'h', 'o', 'n']#B.>>> print list('Life is short, you need Python.').count('is') 1#C.>>> x = [2, 3, 0, 4, 1] >>> x.sort() >>> print x [0, 1, 2, 3, 4]#D.>>> words = ['Life', 'is', 'short', 'you', 'need', 'Python'] >>> words.index('you') 4