第19153题 单选
求给定Python代码的执行结果
mylist=['Failure','is','the','mother','of','success']
for x in mylist[:]:
    if len(x)<=3:
        mylist.append(x)
print(mylist)
A

['Failure','is','the','mother','of','success']

B

['Failure','is','the','mother','of','success','of','is']

C

['Failure', 'is', 'the', 'mother', 'of', 'success', 'is', 'of']

D

['Failure', 'is', 'the', 'mother', 'of', 'success', 'is', 'the', 'of']

程序运行统计
暂无判题统计