Which of the following is NOT an example of simile()
A. The assignment was a breeze
B. He is as cunning as a fox
C. Her cheeks are red like a rose
D. The soldiers are as brave as lions
查看答案
Christmas is a Christian holy day celebrated on December 25th _____ the birth of Jesus Christ()
A. in honor of
B. in favor of
C. in terms of
D. in accordance with
Which of the following is NOT mentioned when the author describes her countless crushes in school()
A. salesman at a supermarket
B. math teacher
C. neighbor’s son
D. best friend’s brother
以下关于程序控制结构的描述中,正确的是()
A. Python使用while实现无限循环
B. 循环结构有两个辅助循环控制的保留字break和goto
C. 单分支结构的使用方式为if <条件>
D. <语句块>
E. D.双分支结构的使用方式为if <条件>
F. <语句块>else <语句块>
以下代码的执行结果是()。desserts = [‘ice cream’, ‘chocolate’, ‘apple crisp’, ‘cookies’]
favorite_dessert = ‘apple crisp’
for dessert in desserts:
if dessert == favorite_dessert:
print(“%s is my favor以下代码的执行结果是()。desserts = [‘ice cream’, ‘chocolate’, ‘apple crisp’, ‘cookies’]
favorite_dessert = ‘apple crisp’
for dessert in desserts:
if dessert == favorite_dessert:
print(“%s is my favor
Apple Crisp is my favorite dessert!
B. apple Crisp is my favorite dessert!
C. ice cream is my favorite dessert!
D. chocolate is my favorite dessert!