第19089题 单选
执行以下Python代码,输出的结果是?
for leibie in 'student':
    if leibie == 'u':
        break
    print(leibie)
A

st

B

stu

C

s t

D

s t u