第16034题 单选
以下Python代码将打印什么内容?
poem = "明日复明日"
for i in poem:
    if i == "明":
        continue
    print(i)
A

明复明

B

日复日

C

明日复明日

D

明明