测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A57773. 下列Python代码的执行结果是?( )mylist=['Failure','is','the','mother','of','success']

单选题

题目描述

下列Python代码的执行结果是?( )

mylist=['Failure','is','the','mother','of','success']
for x in mylist[:]:
    if len(x)<=3:
        mylist.append(x)
print(mylist)

选项(单选)