以下代码的执行结果是()。desserts = [‘ice cream’, ‘chocolate’, ‘apple crisp’, ‘cookies’]<br>favorite_dessert = ‘apple crisp’<br>for dessert in desserts:<br>if dessert == favorite_dessert:<br>print(“%s is my favor
A.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!